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