Add "_slow" to the end of the queuecommand test functions
authorDiane Trout <diane@caltech.edu>
Thu, 30 Oct 2008 21:59:56 +0000 (21:59 +0000)
committerDiane Trout <diane@caltech.edu>
Thu, 30 Oct 2008 21:59:56 +0000 (21:59 +0000)
this allows "nosetests --exclude=slow" to skip them.

htsworkflow/util/test/test_queuecommands.py

index 424da88e478e22c217465a5c037af5de6a2f84a5..f4807d7efe03e85e49310ccd3dc7f3b7fee2e602 100644 (file)
@@ -13,7 +13,7 @@ class testQueueCommands(unittest.TestCase):
 
        
 
-    def test_unlimited_run(self):
+    def test_unlimited_run_slow(self):
         """
         Run everything at once
         """
@@ -30,7 +30,7 @@ class testQueueCommands(unittest.TestCase):
         self.failUnless( end > 2.9 and end < 3.1,
                          "took %s seconds, exected ~3" % (end,))
 
-    def test_limited_run(self):
+    def test_limited_run_slow(self):
         """
         Run a limited number of jobs
         """