in reply to run tests only changed files
My test suite takes about 6 minutes to run. Most of the time, I'm testing things that haven't changed.
Are you sure nothing has changed? 'Action at a distance' comes to mind. I run tests in order to prove that nothing has changed. Maybe you can optimize the tests and make them run faster? If that is not an option then you could run a specific test file, e.g.:
perl -I lib/ t/10_lulu.t
...and as soon as it yields the expected result run the whole testsuite.
|
|---|