Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,10 @@ task integrationTest(type: Test) {
description = 'Runs integration tests.'
group = 'verification'

// Disable caching because the tests use com.google.firebase.appdistribution.gradle.VersionUtils,
// which fetches the latest version from the internet.
outputs.upToDateWhen { false }

testClassesDirs = sourceSets.integrationTest.output.classesDirs
classpath = sourceSets.integrationTest.runtimeClasspath

Expand All @@ -185,6 +189,10 @@ task prodTest(type: Test) {
description = 'Runs prod tests.'
group = 'verification'

// Disable caching because the tests use com.google.firebase.appdistribution.gradle.VersionUtils,
// which fetches the latest version from the internet.
outputs.upToDateWhen { false }

testClassesDirs = sourceSets.prodTest.output.classesDirs
classpath = sourceSets.prodTest.runtimeClasspath

Expand Down
Loading