##// END OF EJS Templates
Add skipif_not_matplotlib decorator
Jens Hedegaard Nielsen -
Show More
@@ -313,6 +313,8 b" skip_if_not_osx = skipif(sys.platform != 'darwin',"
313 # Other skip decorators
313 # Other skip decorators
314 skipif_not_numpy = skipif(module_not_available('numpy'),"This test requires numpy")
314 skipif_not_numpy = skipif(module_not_available('numpy'),"This test requires numpy")
315
315
316 skipif_not_matplotlib = skipif(module_not_available('matplotlib'),"This test requires matplotlib")
317
316 skipif_not_sympy = skipif(module_not_available('sympy'),"This test requires sympy")
318 skipif_not_sympy = skipif(module_not_available('sympy'),"This test requires sympy")
317
319
318 skip_known_failure = knownfailureif(True,'This test is known to fail')
320 skip_known_failure = knownfailureif(True,'This test is known to fail')
General Comments 0
You need to be logged in to leave comments. Login now