Skip to content

Commit 2e93482

Browse files
committed
Update build-validation.yml and build.gradle to enforce test failure handling
1 parent 4aed9c4 commit 2e93482

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/workflows/build-validation.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656

5757
- name: Integration Tests with Gradle
5858
run: ./gradlew integrationTest
59+
continue-on-error: false
5960

6061
- name: Archive test report
6162
uses: actions/upload-artifact@v2

client/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ task integrationTest(type: Test) {
9494
dependsOn build
9595
shouldRunAfter test
9696
testLogging.showStandardStreams = true
97+
98+
ignoreFailures = false
9799
}
98100

99101
publishing {

0 commit comments

Comments
 (0)