Revision: 7642
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7642&view=rev
Author:   astraw
Date:     2009-09-06 01:42:27 +0000 (Sun, 06 Sep 2009)

Log Message:
-----------
testing: allow fail_condition to be 'indeterminate' for knownfailureif decorator

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:42:16 UTC (rev 7641)
+++ trunk/matplotlib/lib/matplotlib/testing/decorators.py       2009-09-06 
01:42:27 UTC (rev 7642)
@@ -19,7 +19,7 @@
                     raise KnownFailureTest(msg)
                 else:
                     raise
-            if fail_condition:
+            if fail_condition and fail_condition != 'indeterminate':
                 raise KnownFailureDidNotFailTest(msg)
             return result
         return nose.tools.make_decorator(f)(failer)


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to