__init__.py 169 B

12345678910
  1. """This module contains code for running the tests in SymPy."""
  2. from .runtests import doctest
  3. from .runtests_pytest import test
  4. __all__ = [
  5. 'test', 'doctest',
  6. ]