summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core/context.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/core/context.py')
-rw-r--r--meta/lib/oeqa/core/context.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/core/context.py b/meta/lib/oeqa/core/context.py
index 28ae017090..1ac28788fa 100644
--- a/meta/lib/oeqa/core/context.py
+++ b/meta/lib/oeqa/core/context.py
@@ -10,6 +10,7 @@ import collections
10 10
11from oeqa.core.loader import OETestLoader 11from oeqa.core.loader import OETestLoader
12from oeqa.core.runner import OETestRunner 12from oeqa.core.runner import OETestRunner
13from oeqa.core.exception import OEQAMissingManifest
13 14
14class OETestContext(object): 15class OETestContext(object):
15 loaderClass = OETestLoader 16 loaderClass = OETestLoader
@@ -30,7 +31,7 @@ class OETestContext(object):
30 31
31 def _read_modules_from_manifest(self, manifest): 32 def _read_modules_from_manifest(self, manifest):
32 if not os.path.exists(manifest): 33 if not os.path.exists(manifest):
33 raise 34 raise OEQAMissingManifest("Manifest does not exist on %s" % manifest)
34 35
35 modules = [] 36 modules = []
36 for line in open(manifest).readlines(): 37 for line in open(manifest).readlines():