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
diff options
context:
space:
mode:
authorMartijn Versteegh <blender@aaltjegron.nl>2022-11-11 21:44:16 +0300
committerMartijn Versteegh <blender@aaltjegron.nl>2022-11-11 21:44:16 +0300
commitb4757873bf1c2fb5e3f858a085af62359d3c1b3f (patch)
tree98d4407723ef2816334d06cd79388c0d7b2d708c /tests/python/bl_io_curve_svg_test.py
parent62effd6791858221392ff7b92104a22ed44ebf7d (diff)
parent2c596319a4888aa40bfdf41f9ea5d446179141d0 (diff)
Merge branch 'master' into refactor-mesh-uv-map-generic
Diffstat (limited to 'tests/python/bl_io_curve_svg_test.py')
-rw-r--r--tests/python/bl_io_curve_svg_test.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/python/bl_io_curve_svg_test.py b/tests/python/bl_io_curve_svg_test.py
index 092dfa5497a..f36036a5b52 100644
--- a/tests/python/bl_io_curve_svg_test.py
+++ b/tests/python/bl_io_curve_svg_test.py
@@ -50,7 +50,10 @@ def main():
from modules import render_report
report = render_report.Report('IO Curve SVG', output_dir, idiff)
report.set_pixelated(True)
- print(test_dir)
+
+ test_dir_name = Path(test_dir).name
+ if test_dir_name == 'complex':
+ report.set_fail_percent(0.01)
ok = report.run(test_dir, blender, get_arguments, batch=True)