kumquat-buildroot/support/testing/tests/package/test_python_dtschema.py
Yegor Yefremov b25c3f1d43 support/testing: add test for python-dtschema
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-08-07 14:54:28 +02:00

13 lines
354 B
Python

from tests.package.test_python import TestPythonPackageBase
class TestPythonPy3Dtschema(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON_DTSCHEMA=y
"""
sample_scripts = ["tests/package/sample_python_dtschema.py"]
timeout = 40