From 638dcdf97096e0acc7c469298c4a097bbd8fc04f Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Wed, 4 Jan 2023 12:35:26 -0300 Subject: [PATCH] [Tests] Adjusted unknown output messages --- MANIFEST.in | 1 + tests/test_plot/test_misc.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 38a34bdf..70664b86 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -8,6 +8,7 @@ include kibot/resources/config_templates/gerber/*.yaml include kibot/resources/config_templates/bom/*.yaml include kibot/resources/config_templates/bom/*.yaml include kibot/resources/config_templates/panelize/*.yaml +include kibot/resources/config_templates/*.yaml include kibot/resources/images/*.svg include kibot/resources/images/*.ico include kibot/resources/pcbdraw/styles/*.json diff --git a/tests/test_plot/test_misc.py b/tests/test_plot/test_misc.py index e14eaf9b..6204302b 100644 --- a/tests/test_plot/test_misc.py +++ b/tests/test_plot/test_misc.py @@ -110,7 +110,7 @@ def test_unknown_out_name_1(test_dir): prj = 'simple_2layer' ctx = context.TestContext(test_dir, prj, 'pre_and_position') ctx.run(EXIT_BAD_ARGS, extra=['-s', 'all', '-C', 'pp']) - assert ctx.search_err("Unknown output .?pp") + assert ctx.search_err("Unknown output/group .?pp") ctx.clean_up() @@ -118,7 +118,7 @@ def test_unknown_out_name_2(test_dir): prj = 'simple_2layer' ctx = context.TestContext(test_dir, prj, 'pre_and_position') ctx.run(EXIT_BAD_ARGS, extra=['-s', 'all', 'pp']) - assert ctx.search_err("Unknown output .?pp") + assert ctx.search_err("Unknown output/group .?pp") ctx.clean_up()