From 8028fb27e13209f448395693b903dfa2510e7770 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Wed, 23 Nov 2022 20:07:38 -0300 Subject: [PATCH] [Tests] Added some tolerance to the pcb_print_multizone_1 test --- tests/test_plot/test_print_pcb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_plot/test_print_pcb.py b/tests/test_plot/test_print_pcb.py index 8f645107..d6ff0774 100644 --- a/tests/test_plot/test_print_pcb.py +++ b/tests/test_plot/test_print_pcb.py @@ -16,7 +16,7 @@ PDF_DIR = 'Layers' PDF_FILE = 'bom-F_Cu+F_SilkS.pdf' PDF_FILE_B = 'PCB_Bot.pdf' PDF_FILE_C = 'PCB_Bot_def.pdf' -DIFF_TOL = 0 if os.path.isfile('/etc/debian_version') else 5000 +DIFF_TOL = 10 if os.path.isfile('/etc/debian_version') else 5000 @pytest.mark.slow