diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2008-05-21 23:16:02 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2008-05-21 23:16:02 +0000 |
commit | ceb9ec29824966383c20364697a330577bd159d5 (patch) | |
tree | a4433da1da0e248a69e8c1471164499929a89fcc /numpy/testing/numpytest.py | |
parent | a49dcfc6e7425065e6a06a115b85ff287937e5dc (diff) | |
download | numpy-ceb9ec29824966383c20364697a330577bd159d5.tar.gz |
Make test(all=True) the default.
Diffstat (limited to 'numpy/testing/numpytest.py')
-rw-r--r-- | numpy/testing/numpytest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/numpytest.py b/numpy/testing/numpytest.py index d58d9d01f..4792f035b 100644 --- a/numpy/testing/numpytest.py +++ b/numpy/testing/numpytest.py @@ -527,7 +527,7 @@ class NumpyTest: all_tests = unittest.TestSuite(suite_list) return all_tests - def test(self, level=1, verbosity=1, all=False, sys_argv=[], + def test(self, level=1, verbosity=1, all=True, sys_argv=[], testcase_pattern='.*'): """Run Numpy module test suite with level and verbosity. |