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