diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-04-02 15:48:20 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-04-04 06:40:28 -0600 |
commit | cf46d8cd2aa809be44b684ba234880e0aa4befe9 (patch) | |
tree | a088359008c9264d9ca6bbe7fe34c2c4440481a3 /numpy/lib | |
parent | 7e5a41de9fab731e27a761c01302a0a93e2d1070 (diff) | |
download | numpy-cf46d8cd2aa809be44b684ba234880e0aa4befe9.tar.gz |
TST: Update modules `test` to PytestTester.
Numpy can now be tested using the standard
`python -c"import numpy; numpy.test()"`
construct.
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/__init__.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/numpy/lib/__init__.py b/numpy/lib/__init__.py index 0c2e6dfab..d764cdc7e 100644 --- a/numpy/lib/__init__.py +++ b/numpy/lib/__init__.py @@ -46,5 +46,6 @@ __all__ += financial.__all__ __all__ += nanfunctions.__all__ __all__ += histograms.__all__ -from numpy.testing import _numpy_tester -test = _numpy_tester().test +from numpy.testing._private.pytesttester import PytestTester +test = PytestTester(__name__) +del PytestTester |