summaryrefslogtreecommitdiff
path: root/numpy/testing/nosetester.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2016-01-07 05:59:00 -0700
committerCharles Harris <charlesr.harris@gmail.com>2016-01-07 05:59:00 -0700
commit8a76291c76aa9b33b18ceb06f6e8f37f990c9e27 (patch)
treef762c9fcc1cf2e0cd8d879a73aa9f061b8db2a2e /numpy/testing/nosetester.py
parent881ae912eb5b88f6224a938b136969dc48cbbac7 (diff)
parent04bee1c34e40bc6c82c8df476baeac8c2edd863c (diff)
downloadnumpy-8a76291c76aa9b33b18ceb06f6e8f37f990c9e27.tar.gz
Merge pull request #6955 from rgommers/distutils-cleanup
MAINT: distutils cleanup for Pyrex support and unused f2py/swig tests
Diffstat (limited to 'numpy/testing/nosetester.py')
-rw-r--r--numpy/testing/nosetester.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py
index 42113676a..e3205837c 100644
--- a/numpy/testing/nosetester.py
+++ b/numpy/testing/nosetester.py
@@ -167,13 +167,6 @@ class NoseTester(object):
want to initialize `NoseTester` objects on behalf of other code.
"""
- # Stuff to exclude from tests. These are from numpy.distutils
- excludes = ['f2py_ext',
- 'f2py_f90_ext',
- 'gen_ext',
- 'pyrex_ext',
- 'swig_ext']
-
def __init__(self, package=None, raise_warnings="release", depth=0):
# Back-compat: 'None' used to mean either "release" or "develop"
# depending on whether this was a release or develop version of
@@ -295,9 +288,6 @@ class NoseTester(object):
import_nose()
# compile argv
argv = self._test_argv(label, verbose, extra_argv)
- # bypass tests noted for exclude
- for ename in self.excludes:
- argv += ['--exclude', ename]
# our way of doing coverage
if coverage:
argv += ['--cover-package=%s' % self.package_name, '--with-coverage',