How can I tell autotest to not rerun all tests unless I explicitly tell it to?

265 Views Asked by At

Autotest will rerun all tests every time my tests start passing when they were failing. I have a lot of tests, and for reasons I won't go into, rerunning all of them is painfully slow.

How can I make it so autotest will never rerun all tests unless I Ctrl-C?

1

There are 1 best solutions below

0
On BEST ANSWER

I fixed it. Somehow. I'm not sure what happened, but I think maybe some plugins I installed fixed it. I don't know.

Here is my ~/.autotest file


Also, there's $ autotest --no-full-after-failed. Silly me.