Skip to content

Commit

Permalink
Do not cache E2E tests
Browse files Browse the repository at this point in the history
It can happen when executing e2e tests from cron on CI:
> Task :e2eTest FROM-CACHE
  • Loading branch information
szpak committed Feb 6, 2024
1 parent 762c75d commit d48cee6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ tasks {
group = "Verification"
testClassesDirs = e2eTest.output.classesDirs
classpath = e2eTest.runtimeClasspath
outputs.doNotCacheIf("E2E tests verifies the integration with external system") { true }
// Pass E2E releasing properties to tests.
// Prefer environment variables which are not displayed with --info
// (unless non CI friendly properties with "." are used).
Expand Down

0 comments on commit d48cee6

Please sign in to comment.