test_python_service_identity.py 453 B

1234567891011121314
  1. from tests.package.test_python import TestPythonPackageBase
  2. class TestPythonPy3ServiceIdentity(TestPythonPackageBase):
  3. __test__ = True
  4. config = TestPythonPackageBase.config + \
  5. """
  6. BR2_PACKAGE_PYTHON3=y
  7. BR2_PACKAGE_PYTHON_SERVICE_IDENTITY=y
  8. BR2_TARGET_ROOTFS_CPIO=y
  9. # BR2_TARGET_ROOTFS_TAR is not set
  10. """
  11. sample_scripts = ["tests/package/sample_python_service_identity.py"]
  12. timeout = 30