summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/python.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/python.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/python.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/meta/lib/oeqa/runtime/cases/python.py b/meta/lib/oeqa/runtime/cases/python.py
index 4419a9f639..66ab4d25f3 100644
--- a/meta/lib/oeqa/runtime/cases/python.py
+++ b/meta/lib/oeqa/runtime/cases/python.py
@@ -1,16 +1,12 @@
1from oeqa.runtime.case import OERuntimeTestCase 1from oeqa.runtime.case import OERuntimeTestCase
2from oeqa.core.decorator.depends import OETestDepends 2from oeqa.core.decorator.depends import OETestDepends
3from oeqa.core.decorator.oeid import OETestID 3from oeqa.core.decorator.oeid import OETestID
4from oeqa.runtime.decorator.package import OEHasPackage
4 5
5class PythonTest(OERuntimeTestCase): 6class PythonTest(OERuntimeTestCase):
6 @classmethod
7 def setUpClass(cls):
8 import unittest
9 if "python3-core" not in cls.tc.image_packages:
10 raise unittest.SkipTest("Python3 not on target")
11
12 @OETestID(965) 7 @OETestID(965)
13 @OETestDepends(['ssh.SSHTest.test_ssh']) 8 @OETestDepends(['ssh.SSHTest.test_ssh'])
9 @OEHasPackage(['python3-core'])
14 def test_python3(self): 10 def test_python3(self):
15 cmd = "python3 -c \"import codecs; print(codecs.encode('Uryyb, jbeyq', 'rot13'))\"" 11 cmd = "python3 -c \"import codecs; print(codecs.encode('Uryyb, jbeyq', 'rot13'))\""
16 status, output = self.target.run(cmd) 12 status, output = self.target.run(cmd)