test_python_pyyaml.py 402 B

123456789101112
  1. from tests.package.test_python import TestPythonPackageBase
  2. class TestPythonPy3Pyyaml(TestPythonPackageBase):
  3. __test__ = True
  4. config = TestPythonPackageBase.config + \
  5. """
  6. BR2_PACKAGE_PYTHON3=y
  7. BR2_PACKAGE_PYTHON_PYYAML=y
  8. """
  9. sample_scripts = ["tests/package/sample_python_pyyaml_enc.py",
  10. "tests/package/sample_python_pyyaml_dec.py"]