mailr26019 - /branches/frame_order_cleanup/test_suite/system_tests/frame_order.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on September 24, 2014 - 17:20:
Author: bugman
Date: Wed Sep 24 17:20:47 2014
New Revision: 26019

URL: http://svn.gna.org/viewcvs/relax?rev=26019&view=rev
Log:
Removed the skip_tests argument for the Frame_order system tests __init__() 
method.

This argument, which was used to manually turn on or off the blacklisted 
tests, is no longer needed
due to the new --no-skip relax command line flag which will enable all 
blacklisted tests.


Modified:
    branches/frame_order_cleanup/test_suite/system_tests/frame_order.py

Modified: branches/frame_order_cleanup/test_suite/system_tests/frame_order.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/frame_order_cleanup/test_suite/system_tests/frame_order.py?rev=26019&r1=26018&r2=26019&view=diff
==============================================================================
--- branches/frame_order_cleanup/test_suite/system_tests/frame_order.py 
(original)
+++ branches/frame_order_cleanup/test_suite/system_tests/frame_order.py Wed 
Sep 24 17:20:47 2014
@@ -59,13 +59,11 @@
 class Frame_order(SystemTestCase):
     """TestCase class for the functional tests of the frame order 
theories."""
 
-    def __init__(self, methodName='runTest', skip_tests=True):
+    def __init__(self, methodName='runTest'):
         """Skip the tests if scipy is not installed.
 
         @keyword methodName:    The name of the test.
         @type methodName:       str
-        @keyword skip_tests:    A flag which if True will cause a large 
number of redundant tests to be skipped.
-        @type skip_tests:       bool
         """
 
         # Execute the base class method.
@@ -128,7 +126,7 @@
         ]
 
         # Skip the blacklisted tests.
-        if skip_tests and methodName in blacklist:
+        if methodName in blacklist:
             status.skipped_tests.append([methodName, None, self._skip_type])
 
         # Missing module.




Related Messages


Powered by MHonArc, Updated Wed Sep 24 18:00:02 2014