1from tests.package.test_python import TestPythonPackageBase 2 3 4class TestPythonPy3Boto3(TestPythonPackageBase): 5 __test__ = True 6 config = TestPythonPackageBase.config + \ 7 """ 8 BR2_PACKAGE_PYTHON3=y 9 BR2_PACKAGE_PYTHON_BOTO3=y 10 """ 11 sample_scripts = ["tests/package/sample_python_boto3.py"] 12 timeout = 10 13