I am looking for a way to continously compile and run tests, but only those for which dependencies have been recompiled.
Basically, has anyone here found a way to replicate what
What does Gradle do if you use -t? That's continuous build on changes, but I haven't experimented with it.
n
niklas
10/22/2019, 9:09 PM
It will build the changes continuously but then goes on to run the entire test suite after every successful compilation
m
Mike
10/22/2019, 11:38 PM
Ahhh, OK. So just detects file changes and runs a normal build. Thanks. So if your tests are fast enough, it's bearable, but likely wouldn't take much to go past bearable.
n
niklas
10/24/2019, 7:51 AM
Our test suite currently takes about 5min to run.
m
Mike
10/24/2019, 12:02 PM
Hmm. Perhaps time to break them up into unit and integration or something else to speed them up? But something like testQuick would still be valuable regardless.