How to skip all test tasks when executing ./gradle...
# gradle
s
How to skip all test tasks when executing ./gradlew clean build ? I tried -x tests, didnt worked.
e
why not
./gradlew assemble
if you don't want to run any tests, then?
☝️ 1
t
./gradlew build -x check