Files
rpi-buildroot/support/testing/tests/package/test_python_msgpack.py
Marcus Hoffmann d429d5d399 support/testing: add python-msgpack runtime test
Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
2024-07-15 00:12:51 +02:00

13 lines
351 B
Python

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