From adcd77a8214b665290de171ef226de47c1a1402b Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Sat, 30 Jul 2022 12:48:31 -0300 Subject: [PATCH] [Experiment] Trying to figure out why KiAuto isn't using the interposer --- .github/workflows/pythonapp.yml | 2 ++ tests/test_plot/test_step.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 1eaa7707..dcdab801 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -55,6 +55,8 @@ jobs: rm /usr/bin/eeschema_do rm /usr/bin/kicad2step_do rm -r /usr/lib/python3/dist-packages/kiauto* + ls -la /github/home/.local/bin/ + ls -la /github/home/.local/lib/python3*/dist-packages/kiauto* #### End Experimental stuff # Unify coverage versions to allow combine pip3 install --upgrade coverage==5.1 diff --git a/tests/test_plot/test_step.py b/tests/test_plot/test_step.py index 61e4034a..2392f119 100644 --- a/tests/test_plot/test_step.py +++ b/tests/test_plot/test_step.py @@ -99,7 +99,7 @@ def test_render_3d_variant_1(test_dir): if context.ki5(): yaml += '_k5' ctx = context.TestContext(test_dir, prj, yaml) - ctx.run() + ctx.run(extra_debug=True) # Check all outputs are there name = prj+'-3D_top.png' ctx.expect_out_file(name)