From 0f7a8b3dfbd9c99162074aeebc80981cfd3decbb Mon Sep 17 00:00:00 2001 From: xoviat Date: Fri, 22 Dec 2017 15:57:04 -0600 Subject: ENH: do backward compatibility correctly --- numpy/testing/utils.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'numpy/testing/utils.py') 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', -- cgit v1.2.1