summaryrefslogtreecommitdiff
path: root/numpy/testing
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2010-02-21 11:24:45 +0000
committerPauli Virtanen <pav@iki.fi>2010-02-21 11:24:45 +0000
commitb72473a850c6b3afa2383712260adbf85cb35125 (patch)
treeb2d24fd63e6f668133dcf9d575896d82978c530a /numpy/testing
parent2362c7ec40bf947af9fb993a5568cd70bc2a1fa0 (diff)
downloadnumpy-b72473a850c6b3afa2383712260adbf85cb35125.tar.gz
ENH: testing: always enable --detailed-errors assert introspection in nose
Diffstat (limited to 'numpy/testing')
-rw-r--r--numpy/testing/nosetester.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py
index 9f345ad26..6d5762ec7 100644
--- a/numpy/testing/nosetester.py
+++ b/numpy/testing/nosetester.py
@@ -230,6 +230,9 @@ class NoseTester(object):
argv+=['--cover-package=%s' % self.package_name, '--with-coverage',
'--cover-tests', '--cover-inclusive', '--cover-erase']
+ # enable assert introspection
+ argv += ['--detailed-errors']
+
# bypass these samples under distutils
argv += ['--exclude','f2py_ext']
argv += ['--exclude','f2py_f90_ext']