About two years ago, Titus had a "random idea" in which he proposed a
nose plugin that would randomize the test order. In one of the projects
I'm involved in, that has turned out to be rather important. I can do
this within the unittest framework with:<br>
<br>class TestXMLHTTPResponder(unittest.TestCase):<br><br>... tests...<br><br>
if __name__ == &quot;__main__&quot;:<br>
<br>
    import random<br>
    suite = unittest.TestLoader().loadTestsFromTestCase(TestXMLHTTPResponder)<br>
    random.shuffle(suite._tests)<br>
    unittest.TextTestRunner(verbosity=2).run(suite)<br><br>But I use nose, so a plugin that would randomize the order would be helpful. Before I charge off and write one, has anyone already done it?<br><blockquote style="margin: 1.5em 0pt;">
<b>Charles R. McCreary</b><br>
13774 Hwy 322<br>
Kilgore, TX 75662<br>
Voice: 903.643.3490<br>
Fax: 866.804.1919</blockquote><br>