Compositor: Increase tolerance for matte tests

The test is very susceptible to exact input values, and recent
change from Filmic to Standard view for those test changed values.

This change is similar to #110897

Pull Request: https://projects.blender.org/blender/blender/pulls/111339
This commit is contained in:
Sergey Sharybin
2023-08-21 12:12:12 +02:00
committed by Sergey Sharybin
parent 12b261545f
commit f0a8c19461

View File

@@ -63,7 +63,8 @@ def main():
# input image. It makes it hard to precisely match results on different systems
# (with and without SSE, i.e.), especially when OCIO has different precision for
# the exponent transform on different platforms.
report.set_fail_threshold(0.05)
report.set_fail_threshold(0.06)
report.set_fail_percent(2)
ok = report.run(test_dir, blender, get_arguments, batch=True)