From 692cdd8d15bd77c689efba01fbdc861baa7e80e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Zaj=C4=85czkowski?= <148013+szpak@users.noreply.github.com> Date: Wed, 7 Feb 2024 18:55:14 +0100 Subject: [PATCH] Do not cache E2E tests (#319) It can happen when executing e2e tests from cron on CI: > Task :e2eTest FROM-CACHE --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle.kts b/build.gradle.kts index 6665215a..da834643 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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).