From f01a91d613c6602ce44c0f831f2affe6b23948b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deleuze?= Date: Tue, 10 Oct 2023 13:33:26 +0200 Subject: [PATCH] Prevent context-refresh Gradle config to disable appTest globally --- cloud/context-refresh/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/context-refresh/build.gradle b/cloud/context-refresh/build.gradle index ddbeb5c..865d31e 100644 --- a/cloud/context-refresh/build.gradle +++ b/cloud/context-refresh/build.gradle @@ -34,4 +34,4 @@ crSmokeTest { // `@ApplicationTest`s need to only be executed during the `checkpointRestoreAppTest and not `appTest` // (we're checking for a value that we want to have been modified in between these two phases). -project.gradle.startParameter.excludedTaskNames.add("appTest") \ No newline at end of file +appTest.enabled = false \ No newline at end of file