diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-03-29 12:15:31 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-29 12:15:31 -0600 |
commit | a7a18f28f41854c41805303f98cb96b22e066f01 (patch) | |
tree | c9d657eb527741d891407faff66fc24cecdc01a7 /numpy/testing/nosetester.py | |
parent | bea761424753c0612a65a6a91d44f9a81bdc4c12 (diff) | |
parent | 2589616ca6a9b6270c9621af038d90972154914b (diff) | |
download | numpy-a7a18f28f41854c41805303f98cb96b22e066f01.tar.gz |
Merge pull request #10812 from charris/rearrange-testing-files
MAINT: Rearrange `numpy/testing` files
Diffstat (limited to 'numpy/testing/nosetester.py')
-rw-r--r-- | numpy/testing/nosetester.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py index 949fae03e..74d159946 100644 --- a/numpy/testing/nosetester.py +++ b/numpy/testing/nosetester.py @@ -3,10 +3,12 @@ Back compatibility nosetester module. It will import the appropriate set of tools """ -import os +import warnings -from .nose_tools.nosetester import * +warnings.warn(ImportWarning, + "Import from numpy.testing, not numpy.testing.nosetester") +from ._private.nosetester import * __all__ = ['get_package_name', 'run_module_suite', 'NoseTester', '_numpy_tester', 'get_package_name', 'import_nose', |