Tests: temporarily increase threshold for OpenImageDenoise test

Until all platforms have the same version, this helps the tests pass.
This commit is contained in:
Brecht Van Lommel 2021-06-09 15:25:59 +02:00
parent ea3895558d
commit 1f55e12206
1 changed files with 5 additions and 0 deletions

View File

@ -54,6 +54,11 @@ def main():
report = render_report.Report("Compositor", output_dir, idiff)
report.set_pixelated(True)
report.set_reference_dir("compositor_renders")
# Temporary change to pass OpenImageDenoise test with both 1.3 and 1.4.
if os.path.basename(test_dir) == 'filter':
report.set_fail_threshold(0.05)
ok = report.run(test_dir, blender, get_arguments, batch=True)
sys.exit(not ok)