diff options
Diffstat (limited to 'numpy/_pytesttester.py')
-rw-r--r-- | numpy/_pytesttester.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/_pytesttester.py b/numpy/_pytesttester.py index 1c32367f3..813e069a4 100644 --- a/numpy/_pytesttester.py +++ b/numpy/_pytesttester.py @@ -6,7 +6,7 @@ boiler plate for doing that is to put the following in the module ``__init__.py`` file:: from numpy._pytesttester import PytestTester - test = PytestTester(__name__).test + test = PytestTester(__name__) del PytestTester @@ -202,7 +202,6 @@ class PytestTester: pytest_args += ["--pyargs"] + list(tests) - # run tests. _show_numpy_info() |