runtests.py 446 B

12345678910111213
  1. """
  2. .. deprecated:: 1.6
  3. sympy.utilities.runtests has been renamed to sympy.testing.runtests.
  4. """
  5. from sympy.utilities.exceptions import sympy_deprecation_warning
  6. sympy_deprecation_warning("The sympy.utilities.runtests submodule is deprecated. Use sympy.testing.runtests instead.",
  7. deprecated_since_version="1.6",
  8. active_deprecations_target="deprecated-sympy-utilities-submodules")
  9. from sympy.testing.runtests import * # noqa:F401