Gradle, skip test-task when doing sonarqube-task

^^ just found a workaround:

In gradle you can skip task with -x option. So in order to only get a report with my integration-tests (and skip test task) I do:

gradle integrationTest sonarqube -x test
1 Like