From 157aedaa50d3c5fc74b45c79fb8b8c4b650217ac Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Tue, 27 Mar 2018 09:26:43 -0600 Subject: MAINT: Rearrange numpy/testing files. This is to prepare for the switch to pytest. * Rename `numpy/testing/nose_tools` to `numpy/testing/_private`. * Redirect imports as needed. * Copy `_testutils.py` from scipy to `numpy/testing/_private`. * Rename `_testutils.py` to `_pytester.py` and remove unneeded bits. --- numpy/testing/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/testing/utils.py') diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index a0218c4e6..914fc6806 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -5,7 +5,7 @@ set of tools """ import os -from .nose_tools.utils import * +from ._private.utils import * __all__ = [ 'assert_equal', 'assert_almost_equal', 'assert_approx_equal', -- cgit v1.2.1