diff options
Diffstat (limited to 'meta/lib/oeqa/sdk/cases/python.py')
-rw-r--r-- | meta/lib/oeqa/sdk/cases/python.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/lib/oeqa/sdk/cases/python.py b/meta/lib/oeqa/sdk/cases/python.py index bd5f1f67be..7c1d183e52 100644 --- a/meta/lib/oeqa/sdk/cases/python.py +++ b/meta/lib/oeqa/sdk/cases/python.py | |||
@@ -2,8 +2,7 @@ import subprocess, unittest | |||
2 | from oeqa.sdk.case import OESDKTestCase | 2 | from oeqa.sdk.case import OESDKTestCase |
3 | 3 | ||
4 | class PythonTest(OESDKTestCase): | 4 | class PythonTest(OESDKTestCase): |
5 | @classmethod | 5 | def setUp(self): |
6 | def setUpClass(self): | ||
7 | if not (self.tc.hasHostPackage("nativesdk-python3") or | 6 | if not (self.tc.hasHostPackage("nativesdk-python3") or |
8 | self.tc.hasHostPackage("python3-native")): | 7 | self.tc.hasHostPackage("python3-native")): |
9 | raise unittest.SkipTest("No python package in the SDK") | 8 | raise unittest.SkipTest("No python package in the SDK") |