We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93112f1 commit ad83526Copy full SHA for ad83526
.github/workflows/build_workflow.yml
@@ -109,9 +109,9 @@ jobs:
109
- name: Execute Unit Tests
110
run: |
111
if [[ $GITHUB_ACTOR == 'dependabot[bot]' ]]; then
112
- ./gradlew test jacocoTestReport -x integrationTest --parallel --build-cache
+ ./gradlew test jacocoTestReport --parallel --build-cache
113
else
114
- ./gradlew test jacocoTestReport sonar -x integrationTest --parallel --build-cache
+ ./gradlew test jacocoTestReport sonar --parallel --build-cache
115
fi
116
working-directory: ./service
117
env:
service/build.gradle
@@ -181,4 +181,3 @@ bootJar {
181
exclude("**/TransformJsonToXml*")
182
}
183
184
-integrationTest.mustRunAfter test
0 commit comments