I have 4 different build types:
- release
- dev
- mock
- test
When I want to make clean build
task for my project I see that Gradle is making a clean build with unit tests.
It is ok but unit tests are running with every build type, it takes 4 times longer for a clean build.
How can I make clean build
with unit tests only for release build type?