Skip to content

Commit 217ee5a

Browse files
authored
[AppDistro] Disable automatic integration test execution with check task (#8115)
The `check` task no longer implicitly depends on `integrationTest` for the `firebase-appdistribution-gradle` module. Unit test, unlike integration tests, block submission of PRs, and the test has been failing frequently. Integration tests can still be run explicitly via `./gradlew :firebase-appdistribution-gradle:integrationTest`.
1 parent b53a55c commit 217ee5a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

firebase-appdistribution-gradle/firebase-appdistribution-gradle.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ task integrationTest(type: Test) {
167167
}
168168
}
169169

170-
check.dependsOn(integrationTest)
170+
// check.dependsOn(integrationTest)
171171

172172
task prodTest(type: Test) {
173173
description = 'Runs prod tests.'

0 commit comments

Comments
 (0)