Say I have 2 different builds in my build.gradle buildTypes (debug, release). When I run the ./gradlew test command, both of those builds will be built and tested. How do I specify that I only want the 'debug' build to build and test when I run ./gradlew test?
Asked
Active
Viewed 633 times
0
-
Is that android related problem? Maybe try `buildRelease` or `assembleRelease`? – Opal Jan 24 '15 at 10:05
-
Run `./gradlew tasks` and share the output. The task You'd like to run is probably listed there. – Opal Jan 24 '15 at 10:06