test_python_augeas.py 374 B

12345678910111213
  1. from tests.package.test_python import TestPythonPackageBase
  2. class TestPythonAugeas(TestPythonPackageBase):
  3. __test__ = True
  4. config = TestPythonPackageBase.config + \
  5. """
  6. BR2_PACKAGE_AUGEAS=y
  7. BR2_PACKAGE_PYTHON3=y
  8. BR2_PACKAGE_PYTHON_AUGEAS=y
  9. """
  10. sample_scripts = ["tests/package/sample_python_augeas.py"]
  11. timeout = 60