diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2016-01-06 20:33:18 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2016-01-06 21:58:53 +0100 |
commit | 15fc41f5f9ecb5da72d6bd3a4932aee8a9d78f08 (patch) | |
tree | 8b0aaeea9ee34831b616ea41d909eaf46f66ea05 /numpy/testing/nosetester.py | |
parent | 1d1eaef896a66059163f0baaaaa162e1f7c225a9 (diff) | |
download | numpy-15fc41f5f9ecb5da72d6bd3a4932aee8a9d78f08.tar.gz |
MAINT: remove unused f2py and SWIG tests from numpy.distutils.
Diffstat (limited to 'numpy/testing/nosetester.py')
-rw-r--r-- | numpy/testing/nosetester.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py index 23ba8cc3a..e3205837c 100644 --- a/numpy/testing/nosetester.py +++ b/numpy/testing/nosetester.py @@ -167,12 +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', - '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 @@ -294,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', |