I have a suite of tests that I recently discovered had an (incorrect) ordering relationship. They are all supposed to be independent.
Nose appears to run tests in the same order each time, which will not per se uncover these dependencies unless the magic happens and I manage to inject something which causes a failure (not my favorite method of programming).
How do I instruct nose to randomize the order of tests it executes?