Files
rpi-buildroot/support/testing/tests/package/test_python_sympy.py
Julien Olivain d46b0936ce package/python-sympy: new package
SymPy is a Python library for symbolic mathematics. It aims
to become a full-featured computer algebra system (CAS)
while keeping the code as simple as possible in order to be
comprehensible and easily extensible. SymPy is written
entirely in Python.

https://www.sympy.org/

Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2024-05-09 22:31:05 +02:00

14 lines
346 B
Python

from tests.package.test_python import TestPythonPackageBase
class TestPythonPy3SymPy(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON_SYMPY=y
"""
sample_scripts = ["tests/package/sample_python_sympy.py"]
timeout = 20