Browse Source

Reduce screenshot test tolerance to 0.1%

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
tobiasKaminsky 5 months ago
parent
commit
3200a16f81
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/build.gradle

+ 1 - 1
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
     }
 }