When I'm running gradle build
, Gradle compiles my tests and production code. When I run gradle build
again, everything is up to date, and nothing is running. All good.
However, when I change a few tests, Gradle doesn't run only the changed tests, but it runs all my tests again. I was hoping that Gradle would be smart enough to find out which tests changed, and only run those test. This would greatly improve the feedback in my test run.
Did I overlook an option, or is my assumption wrong here?