kumquat-buildroot/support/testing/tests/package/test_python_qrcode.py
Thomas Petazzoni 37f05c2497 package/python-qrcode: new package
Needed by python-autobahn encryption subpackage.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-08-08 22:24:45 +02:00

13 lines
371 B
Python

from tests.package.test_python import TestPythonPackageBase
class TestPythonPy3Qrcode(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON_QRCODE=y
BR2_PACKAGE_PYTHON_QRCODE_SVG=y
"""
sample_scripts = ["tests/package/sample_python_qrcode.py"]