diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-03-27 09:26:43 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-03-29 11:41:35 -0600 |
commit | 157aedaa50d3c5fc74b45c79fb8b8c4b650217ac (patch) | |
tree | 3c537ff46b4e0c031e791aeb85487be2eb9c782d /numpy/testing/utils.py | |
parent | e4d678a2f5859d29a853d617e9e5bbd4b6241898 (diff) | |
download | numpy-157aedaa50d3c5fc74b45c79fb8b8c4b650217ac.tar.gz |
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.
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r-- | numpy/testing/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
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', |