Files
2024-10-30 22:14:35 +01:00

11 lines
169 B
Python

"""This module contains code for running the tests in SymPy."""
from .runtests import doctest
from .runtests_pytest import test
__all__ = [
'test', 'doctest',
]