blob: 772bff30576b94ab0b4f850f6ba5f4f02ac3271f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
"""
Back compatibility nosetester module. It will import the appropriate
set of tools
"""
import warnings
warnings.warn("Import from numpy.testing, not numpy.testing.nosetester",
ImportWarning)
from ._private.nosetester import *
__all__ = ['get_package_name', 'run_module_suite', 'NoseTester',
'_numpy_tester', 'get_package_name', 'import_nose',
'suppress_warnings']
|