summaryrefslogtreecommitdiff
path: root/numpy/testing/nosetester.py
diff options
context:
space:
mode:
authorAlan McIntyre <alan.mcintyre@local>2008-09-04 18:23:48 +0000
committerAlan McIntyre <alan.mcintyre@local>2008-09-04 18:23:48 +0000
commitba9a02dcb2c3ca635076a75cc9eb0f406e00ceed (patch)
tree403f11ecbb8ac0671240e57f3cf977084e35be2b /numpy/testing/nosetester.py
parent1a8809acef23b2480ec9b5eecbd4e4b57d7f14b7 (diff)
downloadnumpy-ba9a02dcb2c3ca635076a75cc9eb0f406e00ceed.tar.gz
Replaced numpy.testing.decorators.skipknownfailure with knownfailureif,
which allows flagging tests as known failures rather than skips. Updated test_umath to use knownfailureif.
Diffstat (limited to 'numpy/testing/nosetester.py')
-rw-r--r--numpy/testing/nosetester.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py
index ae3a56094..e5fb2cd35 100644
--- a/numpy/testing/nosetester.py
+++ b/numpy/testing/nosetester.py
@@ -266,8 +266,8 @@ class NoseTester(object):
# construct list of plugins, omitting the existing doctest plugin
import nose.plugins.builtin
- from noseclasses import numpyDoctest
- plugins = [numpyDoctest()]
+ from noseclasses import numpyDoctest, KnownFailure
+ plugins = [numpyDoctest(), KnownFailure()]
for p in nose.plugins.builtin.plugins:
plug = p()
if plug.name == 'doctest':