Skip to content

Commit

Permalink
Do not cache E2E tests (#319)
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 authored Feb 7, 2024
1 parent 762c75d commit 692cdd8
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 verify 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 692cdd8

Please sign in to comment.