# HG changeset patch # User Oleksandr Gavenko # Date 1544353957 -7200 # Node ID 66966fe5239dc8ce57973f87490f633cc4084415 # Parent 6d97c0b855ef615346418bb05766bc0f70bbc5be Added long option variants. diff -r 6d97c0b855ef -r 66966fe5239d gradle.rst --- a/gradle.rst Sun Dec 09 12:00:36 2018 +0200 +++ b/gradle.rst Sun Dec 09 13:12:37 2018 +0200 @@ -40,6 +40,12 @@ Make Gradle quiet:: $ gradle -q ... + $ gradle --quiet ... + +Show only errors/warnings:: + + $ gradle -w ... + $ gradle --warn ... Make Gradle verbose:: @@ -213,6 +219,10 @@ $ gradle -x test build +To continue testing after fixing test:: + + $ gradle test --continue + Alternative solution involves passing system property with ``build.gradle``:: test.onlyIf { ! Boolean.getBoolean('skip.tests') }