How can I have nose re-run only tests that failed?
EDIT June 2021: Surprised this is still getting votes. If at all possible, consider using ptyest with the –last-failed option. It turns out this is trivial with nose. First run the command and include the –with-id flag. # Environment stuff deleted nosetests python/*Tests.py -v –with-id nosetests python/*Tests.py -v –failed If, say, four tests fail, running … Read more