Sonarqube - gradle - exclude integration tests

Hi, Is there any configuration for sonarqube plugin where I can disable the integration tests from sonarqube task?

I am running tasks ./gradlew testDebugUnitTest sonarqube

  • testDebugUnitTest generates all required unit tests coverage reports (jacoco)
  • sonarqube task is running all tests configuration including compilation integration tests

I would like to completely exclude UI tests or at least exclude UI tests for specific modules.

Plugin version:
apply plugin: ‘org.sonarqube’

org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.3

Thanks