Author: bugman
Date: Wed Sep 24 14:56:45 2014
New Revision: 26013

URL: http://svn.gna.org/viewcvs/relax?rev=26013&view=rev
Log:
Fix for the test suite summary printout function for the new --no-skip option.

The relax status object was clashing with a variable of the same name.


Modified:
    trunk/test_suite/test_suite_runner.py

Modified: trunk/test_suite/test_suite_runner.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/test_suite/test_suite_runner.py?rev=26013&r1=26012&r2=26013&view=diff
==============================================================================
--- trunk/test_suite/test_suite_runner.py       (original)
+++ trunk/test_suite/test_suite_runner.py       Wed Sep 24 14:56:45 2014
@@ -308,10 +308,10 @@
         # Synopsis.
         if hasattr(self, 'system_result') and hasattr(self, 'unit_result') and 
hasattr(self, 'gui_result') and hasattr(self, 'verification_result'):
             if self.gui_result == "skip":
-                status = self.system_result and self.unit_result and 
self.verification_result
+                test_status = self.system_result and self.unit_result and 
self.verification_result
             else:
-                status = self.system_result and self.unit_result and 
self.gui_result and self.verification_result
-            summary_line("Synopsis", status)
+                test_status = self.system_result and self.unit_result and 
self.gui_result and self.verification_result
+            summary_line("Synopsis", test_status)
 
         # End.
         print('\n\n')


_______________________________________________
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
[email protected]

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits

Reply via email to