mirror of
https://git.yoctoproject.org/poky
synced 2026-04-14 08:02:30 +02:00
oe-selfest: add maturn runtime (testimage) test
Basic smoke test for maturin to test the 'maturin list-python' case. (From OE-Core rev: 47c948c3cf6e582abd12021ceeff2c20a3e81fb5) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
9707dc5549
commit
844e91049c
23
meta/lib/oeqa/runtime/cases/maturin.py
Normal file
23
meta/lib/oeqa/runtime/cases/maturin.py
Normal file
@@ -0,0 +1,23 @@
|
||||
#
|
||||
# Copyright OpenEmbedded Contributors
|
||||
#
|
||||
# SPDX-License-Identifier: MIT
|
||||
#
|
||||
|
||||
import os
|
||||
|
||||
from oeqa.runtime.case import OERuntimeTestCase
|
||||
from oeqa.core.decorator.depends import OETestDepends
|
||||
from oeqa.runtime.decorator.package import OEHasPackage
|
||||
|
||||
class MaturinTest(OERuntimeTestCase):
|
||||
@OETestDepends(['ssh.SSHTest.test_ssh', 'python.PythonTest.test_python3'])
|
||||
@OEHasPackage(['python3-maturin'])
|
||||
def test_maturin_list_python(self):
|
||||
status, output = self.target.run("maturin list-python")
|
||||
self.assertEqual(status, 0)
|
||||
_, py_major = self.target.run("python3 -c 'import sys; print(sys.version_info.major)'")
|
||||
_, py_minor = self.target.run("python3 -c 'import sys; print(sys.version_info.minor)'")
|
||||
python_version = "%s.%s" % (py_major, py_minor)
|
||||
self.assertEqual(output, "🐍 1 python interpreter found:\n"
|
||||
" - CPython %s at /usr/bin/python%s" % (python_version, python_version))
|
||||
Reference in New Issue
Block a user