diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/runtime/context.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/context.py b/meta/lib/oeqa/runtime/context.py index 77d58eefa7..ef738a3359 100644 --- a/meta/lib/oeqa/runtime/context.py +++ b/meta/lib/oeqa/runtime/context.py | |||
@@ -138,7 +138,7 @@ class OERuntimeTestContextExecutor(OETestContextExecutor): | |||
138 | def add_controller_list(path): | 138 | def add_controller_list(path): |
139 | if not os.path.exists(os.path.join(path, '__init__.py')): | 139 | if not os.path.exists(os.path.join(path, '__init__.py')): |
140 | raise OSError('Controllers directory %s exists but is missing __init__.py' % path) | 140 | raise OSError('Controllers directory %s exists but is missing __init__.py' % path) |
141 | files = sorted([f for f in os.listdir(path) if f.endswith('.py') and not f.startswith('_')]) | 141 | files = sorted([f for f in os.listdir(path) if f.endswith('.py') and not f.startswith('_') and not f.startswith('.#')]) |
142 | for f in files: | 142 | for f in files: |
143 | module = 'oeqa.controllers.' + f[:-3] | 143 | module = 'oeqa.controllers.' + f[:-3] |
144 | if module not in controllerslist: | 144 | if module not in controllerslist: |