Files
ytts/venv/lib/python3.11/site-packages/sympy/testing/__init__.py
2025-04-02 21:44:17 -07: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',
]