From e1c40e8c80fae86239b67225ca6721266129e8de Mon Sep 17 00:00:00 2001 From: jaseg Date: Fri, 31 Mar 2023 22:31:58 +0200 Subject: Fix failing tests --- gerbolyze/tests/test_integration.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gerbolyze/tests/test_integration.py') diff --git a/gerbolyze/tests/test_integration.py b/gerbolyze/tests/test_integration.py index f324096..cf59eed 100644 --- a/gerbolyze/tests/test_integration.py +++ b/gerbolyze/tests/test_integration.py @@ -33,6 +33,8 @@ reference_path = lambda reference: Path(__file__).parent / 'resources' / str(ref def run_command(*args): try: proc = subprocess.run(args, check=True, capture_output=True) + print(proc.stdout.decode()) + print(proc.stderr.decode(), file=sys.stderr) except subprocess.CalledProcessError as e: print(e.stdout.decode()) print(e.stderr.decode(), file=sys.stderr) @@ -69,6 +71,7 @@ def test_convert_layers(): with tempfile.TemporaryDirectory() as out_dir: run_command('python3', '-m', 'gerbolyze', 'convert', infile, out_dir) stack = gerbonara.layers.LayerStack.open(out_dir) + for layer, dia in { 'top paste': 0.100, 'top silk': 0.110, -- cgit