summaryrefslogtreecommitdiff
path: root/numpy/testing/nosetester.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/testing/nosetester.py')
-rw-r--r--numpy/testing/nosetester.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py
index 59a7f4c7a..949fae03e 100644
--- a/numpy/testing/nosetester.py
+++ b/numpy/testing/nosetester.py
@@ -5,10 +5,7 @@ set of tools
"""
import os
-if int(os.getenv('NPY_PYTEST', '0')):
- from .pytest_tools.nosetester import *
-else:
- from .nose_tools.nosetester import *
+from .nose_tools.nosetester import *
__all__ = ['get_package_name', 'run_module_suite', 'NoseTester',