|
From: <as...@us...> - 2009-09-06 01:44:05
|
Revision: 7651
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7651&view=rev
Author: astraw
Date: 2009-09-06 01:43:59 +0000 (Sun, 06 Sep 2009)
Log Message:
-----------
testing: give more informative error when nose plugin not installed
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/testing/decorators.py
Modified: trunk/matplotlib/lib/matplotlib/testing/decorators.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/testing/decorators.py 2009-09-06 01:43:50 UTC (rev 7650)
+++ trunk/matplotlib/lib/matplotlib/testing/decorators.py 2009-09-06 01:43:59 UTC (rev 7651)
@@ -16,7 +16,7 @@
result = f(*args, **kwargs)
except:
if fail_condition:
- raise KnownFailureTest(msg)
+ raise KnownFailureTest(msg) # An error here when running nose means that you don't have the matplotlib.testing.noseclasses:KnownFailure plugin in use.
else:
raise
if fail_condition and fail_condition != 'indeterminate':
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|