xref: /OK3568_Linux_fs/buildroot/support/testing/tests/package/test_python_augeas.py (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1from tests.package.test_python import TestPythonPackageBase
2
3
4class TestPythonAugeas(TestPythonPackageBase):
5    __test__ = True
6    config = TestPythonPackageBase.config + \
7        """
8        BR2_PACKAGE_AUGEAS=y
9        BR2_PACKAGE_PYTHON3=y
10        BR2_PACKAGE_PYTHON_AUGEAS=y
11        """
12    sample_scripts = ["tests/package/sample_python_augeas.py"]
13    timeout = 60
14