diff options
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/oetest.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py index 9132a19319..7dca77a969 100644 --- a/meta/lib/oeqa/oetest.py +++ b/meta/lib/oeqa/oetest.py | |||
@@ -265,8 +265,6 @@ class TestContext(object): | |||
265 | 265 | ||
266 | if "auto" in self.testsuites: | 266 | if "auto" in self.testsuites: |
267 | def add_auto_list(path): | 267 | def add_auto_list(path): |
268 | if not os.path.exists(os.path.join(path, '__init__.py')): | ||
269 | bb.fatal('Tests directory %s exists but is missing __init__.py' % path) | ||
270 | files = sorted([f for f in os.listdir(path) if f.endswith('.py') and not f.startswith('_')]) | 268 | files = sorted([f for f in os.listdir(path) if f.endswith('.py') and not f.startswith('_')]) |
271 | for f in files: | 269 | for f in files: |
272 | module = 'oeqa.' + type + '.' + f[:-3] | 270 | module = 'oeqa.' + type + '.' + f[:-3] |