kumquat-buildroot/support/testing/tests/package/test_python_aexpect.py
Thomas Petazzoni 63b72a7c15 package/python-aexpect: new package
This package was initially requested by José Pekkarinen, so he is
assigned as the maintainer for it.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-01-06 09:28:57 +01:00

13 lines
351 B
Python

from tests.package.test_python import TestPythonPackageBase
class TestPythonPy3Aexpect(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON_AEXPECT=y
"""
sample_scripts = ["tests/package/sample_python_aexpect.py"]
timeout = 30