Skip to content

Latest commit

 

History

History
executable file
·
11 lines (7 loc) · 293 Bytes

skip-tests-during-builds.md

File metadata and controls

executable file
·
11 lines (7 loc) · 293 Bytes

Skip Tests During Builds

Category: Gradle

Good programming practice requires running tests as part your builds.

If however, you need to perform a basic compilation in Gradle without executing tests, run with the -x (exclude) parameter as follows:

gradle build -x test