From c7432c25accfcce38dc87dcc74a2a7f41ea5e370 Mon Sep 17 00:00:00 2001 From: Aras Pranckevicius Date: Thu, 14 Nov 2024 14:28:07 +0200 Subject: [PATCH] Tests: increase allowed error threshold for VSE render tests ffmpeg video decoding on mac produces a tiny bit different results, it seems. The error threshold is still below the default threshold. --- tests/python/sequencer_render_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/sequencer_render_tests.py b/tests/python/sequencer_render_tests.py index 0f713619baa..686f20fc935 100644 --- a/tests/python/sequencer_render_tests.py +++ b/tests/python/sequencer_render_tests.py @@ -50,7 +50,7 @@ def main(): report = render_report.Report("Sequencer", output_dir, oiiotool) report.set_pixelated(True) # Default error tolerances are quite large, lower them. - report.set_fail_threshold(2.0 / 255.0) + report.set_fail_threshold(3.0 / 255.0) report.set_fail_percent(0.01) report.set_reference_dir("reference")