summaryrefslogtreecommitdiff
path: root/numpy/testing/numpytest.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2008-05-21 23:16:02 +0000
committerCharles Harris <charlesr.harris@gmail.com>2008-05-21 23:16:02 +0000
commitceb9ec29824966383c20364697a330577bd159d5 (patch)
treea4433da1da0e248a69e8c1471164499929a89fcc /numpy/testing/numpytest.py
parenta49dcfc6e7425065e6a06a115b85ff287937e5dc (diff)
downloadnumpy-ceb9ec29824966383c20364697a330577bd159d5.tar.gz
Make test(all=True) the default.
Diffstat (limited to 'numpy/testing/numpytest.py')
-rw-r--r--numpy/testing/numpytest.py2
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.