diff options
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r-- | numpy/testing/utils.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index 985fbf77d..a0218c4e6 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -5,10 +5,7 @@ set of tools """ import os -if int(os.getenv('NPY_PYTEST', '0')): - from .pytest_tools.utils import * -else: - from .nose_tools.utils import * +from .nose_tools.utils import * __all__ = [ 'assert_equal', 'assert_almost_equal', 'assert_approx_equal', |