Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2021-06-09 16:25:59 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-06-09 16:28:19 +0300
commit1f55e122062a6550effd61a35445cf5b4e9e84ea (patch)
treed70e60d6ab3f755c36e07eb4505b79c3439746a0 /tests
parentea3895558d7b174347d1ba1f03fdb22c90e67a79 (diff)
Tests: temporarily increase threshold for OpenImageDenoise test
Until all platforms have the same version, this helps the tests pass.
Diffstat (limited to 'tests')
-rw-r--r--tests/python/compositor_render_tests.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/python/compositor_render_tests.py b/tests/python/compositor_render_tests.py
index fbdae595c51..057d4a2e6dd 100644
--- a/tests/python/compositor_render_tests.py
+++ b/tests/python/compositor_render_tests.py
@@ -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)