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/decorators.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/decorators.py')
-rw-r--r-- | numpy/testing/decorators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/decorators.py b/numpy/testing/decorators.py index 21bcdd798..f76ee6632 100644 --- a/numpy/testing/decorators.py +++ b/numpy/testing/decorators.py @@ -5,4 +5,4 @@ set of tools """ import os -from .nose_tools.decorators import * +from ._private.decorators import * |