File tree Expand file tree Collapse file tree
firebase-appdistribution-gradle Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -171,6 +171,10 @@ task integrationTest(type: Test) {
171171 description = ' Runs integration tests.'
172172 group = ' verification'
173173
174+ // Disable caching because the tests use com.google.firebase.appdistribution.gradle.VersionUtils,
175+ // which fetches the latest version from the internet.
176+ outputs. upToDateWhen { false }
177+
174178 testClassesDirs = sourceSets. integrationTest. output. classesDirs
175179 classpath = sourceSets. integrationTest. runtimeClasspath
176180
@@ -185,6 +189,10 @@ task prodTest(type: Test) {
185189 description = ' Runs prod tests.'
186190 group = ' verification'
187191
192+ // Disable caching because the tests use com.google.firebase.appdistribution.gradle.VersionUtils,
193+ // which fetches the latest version from the internet.
194+ outputs. upToDateWhen { false }
195+
188196 testClassesDirs = sourceSets. prodTest. output. classesDirs
189197 classpath = sourceSets. prodTest. runtimeClasspath
190198
You can’t perform that action at this time.
0 commit comments