From 3200a16f81ca3b185022ac5911f462d72855adac Mon Sep 17 00:00:00 2001 From: tobiasKaminsky Date: Fri, 11 Oct 2024 08:37:38 +0200 Subject: [PATCH] Reduce screenshot test tolerance to 0.1% Signed-off-by: tobiasKaminsky --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 275a6f5456..27d79b2eab 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -468,7 +468,7 @@ if (shotTest) { showOnlyFailingTestsInReports = ciBuild // CI environment renders some shadows slightly different from local VMs // Add a 0.5% tolerance to account for that - tolerance = ciBuild ? 0.5 : 0 + tolerance = ciBuild ? 0.1 : 0 } }