Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd7870d commit bf84307Copy full SHA for bf84307
1 file changed
test/run-mpl-test.py
@@ -43,6 +43,7 @@
43
os.chdir( working )
44
45
import nose
46
+import nose.plugins.builtin
47
from mplTest import MplNosePlugin, path_utils
48
import matplotlib
49
from matplotlib.testing.noseclasses import KnownFailure
@@ -94,8 +95,12 @@
94
95
args.append('.')
96
args.extend( matplotlib.default_test_modules )
97
98
+plugins = [plugin() for plugin in nose.plugins.builtin.plugins]
99
+plugins.extend( [ MplNosePlugin(), KnownFailure() ])
100
+
101
success = nose.run( argv = args,
- plugins = [ MplNosePlugin(), KnownFailure() ] )
102
+ plugins = plugins,
103
+ )
104
105
### do other stuff here
106
0 commit comments