Gradle – How to skip unit test

Be default, Gradle build is abort if any unit tests is failed. Oftentimes, we still need to build the project even the unit test is failed.

To skip the entire unit tests in Gradle build, uses this option-x test


gradle build -x test

Review a sample output :

1. Default Gradle build :

 
$ gradle build
:compileJava UP-TO-DATE
:processResources UP-TO-DATE
:classes UP-TO-DATE
:jar UP-TO-DATE
:assemble UP-TO-DATE
---------------------------> Unit test task
:compileTestJava
:processTestResources UP-TO-DATE
:testClasses
---------------------------> Unit test task
:test
:check
:build

2. Gradle build with unit test skipped :


$ gradle build -x test
:compileJava UP-TO-DATE
:processResources UP-TO-DATE
:classes UP-TO-DATE
:jar UP-TO-DATE
:assemble UP-TO-DATE
---------------------------> Unit test task

---------------------------> Unit test task
:check
:build

References

  1. Gradle user guide – Excluding tasks
  2. How To Skip Maven Unit Test

4 comments on “Gradle – How to skip unit test

  1. How to run specific test immediate after build – while running command gradle build

    Reply
    1. I guess in this case you have to create a specific task in Gradle and then run it instead of call this default task (build).

      Reply

Leave a Comment

Your email address will not be published. Required fields are marked *