summaryrefslogtreecommitdiff
path: root/numpy/ma/testutils.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-04-04 10:33:07 -0600
committerCharles Harris <charlesr.harris@gmail.com>2018-04-06 18:20:56 -0600
commit7bf0564f87511d9e7b6287b3eec0857d0d7742df (patch)
tree0f61ebbad4144e802a8966015741b2d309be696e /numpy/ma/testutils.py
parent036151143bff1eebeded5582534e676a192352cd (diff)
downloadnumpy-7bf0564f87511d9e7b6287b3eec0857d0d7742df.tar.gz
MAINT: Remove all uses of run_module_suite.
That function is nose specific and has not worked since `__init__` files were added to the tests directories.
Diffstat (limited to 'numpy/ma/testutils.py')
-rw-r--r--numpy/ma/testutils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/ma/testutils.py b/numpy/ma/testutils.py
index c4ee639ed..c0deaa9f4 100644
--- a/numpy/ma/testutils.py
+++ b/numpy/ma/testutils.py
@@ -15,7 +15,7 @@ import numpy.core.umath as umath
import numpy.testing
from numpy.testing import (
assert_, assert_allclose, assert_array_almost_equal_nulp,
- assert_raises, build_err_msg, run_module_suite
+ assert_raises, build_err_msg
)
from .core import mask_or, getmask, masked_array, nomask, masked, filled
@@ -33,8 +33,8 @@ __all__masked = [
# masked arrays. But there was no way to tell before.
from unittest import TestCase
__some__from_testing = [
- 'TestCase', 'assert_', 'assert_allclose',
- 'assert_array_almost_equal_nulp', 'assert_raises', 'run_module_suite',
+ 'TestCase', 'assert_', 'assert_allclose', 'assert_array_almost_equal_nulp',
+ 'assert_raises'
]
__all__ = __all__masked + __some__from_testing