diff options
Diffstat (limited to 'numpy/testing/nosetester.py')
-rw-r--r-- | numpy/testing/nosetester.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py index 66b564d4b..074ac1766 100644 --- a/numpy/testing/nosetester.py +++ b/numpy/testing/nosetester.py @@ -332,6 +332,8 @@ class NoseTester(object): # Force deprecation warnings to raise warnings.filterwarnings('error', category=DeprecationWarning) + # Force runtime warnings to raise + warnings.filterwarnings('error', category=RuntimeWarning) argv, plugins = self.prepare_test_args(label, verbose, extra_argv, doctests, coverage) |