Skip to content
Snippets Groups Projects
Commit 3f0f31a3 authored by Nicolas KAROLAK's avatar Nicolas KAROLAK
Browse files

fix(tester): ignore __init__.py

parent 7eaf7828
No related branches found
No related tags found
No related merge requests found
...@@ -186,6 +186,7 @@ class Tester(): ...@@ -186,6 +186,7 @@ class Tester():
def discover_tests(self, basic_only=False, msuser=None): def discover_tests(self, basic_only=False, msuser=None):
ignored_tests = utils.get_conf('TESTER_IGNORED_TESTS', '').split(',') ignored_tests = utils.get_conf('TESTER_IGNORED_TESTS', '').split(',')
ignored_tests.append("__init__.py")
# Get standard tests # Get standard tests
path = os.path.join(self.root_dir, 'tests') path = os.path.join(self.root_dir, 'tests')
if not os.path.isdir(path): if not os.path.isdir(path):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment