Files
rpi-buildroot/support/testing/tests/package/test_python_ruamel_yaml.py
Marcus Hoffmann 21da0df09d support/testing: add new python-ruamel-yaml runtime test
Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2024-07-12 15:04:45 +02:00

13 lines
362 B
Python

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