team-10/env/Lib/site-packages/sympy/testing/__init__.py

11 lines
169 B
Python
Raw Permalink Normal View History

2025-08-02 07:34:44 +02:00
"""This module contains code for running the tests in SymPy."""
from .runtests import doctest
from .runtests_pytest import test
__all__ = [
'test', 'doctest',
]