nosetester.py 583 B

1234567891011121314151617181920
  1. """
  2. Back compatibility nosetester module. It will import the appropriate
  3. set of tools
  4. """
  5. from __future__ import division, absolute_import, print_function
  6. import warnings
  7. # 2018-04-04, numpy 1.15.0
  8. warnings.warn("Importing from numpy.testing.nosetester is deprecated "
  9. "since 1.15.0, import from numpy.testing instead.",
  10. DeprecationWarning, stacklevel=2)
  11. from ._private.nosetester import *
  12. __all__ = ['get_package_name', 'run_module_suite', 'NoseTester',
  13. '_numpy_tester', 'get_package_name', 'import_nose',
  14. 'suppress_warnings']