pytest.py 435 B

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