From 3f0f31a34dc71ddcb0584804e75c21fa99bc009a Mon Sep 17 00:00:00 2001
From: Nicolas KAROLAK <nicolas@karolak.fr>
Date: Sat, 1 Sep 2018 11:03:52 +0200
Subject: [PATCH] fix(tester): ignore __init__.py

---
 tester.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tester.py b/tester.py
index bdb2db92..87d8a316 100755
--- a/tester.py
+++ b/tester.py
@@ -186,6 +186,7 @@ class Tester():
 
     def discover_tests(self, basic_only=False, msuser=None):
         ignored_tests = utils.get_conf('TESTER_IGNORED_TESTS', '').split(',')
+        ignored_tests.append("__init__.py")
         # Get standard tests
         path = os.path.join(self.root_dir, 'tests')
         if not os.path.isdir(path):
-- 
GitLab