diff options
Diffstat (limited to 'svg-flatten/src/test/svg_tests.py')
-rw-r--r-- | svg-flatten/src/test/svg_tests.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/svg-flatten/src/test/svg_tests.py b/svg-flatten/src/test/svg_tests.py index 0fc8dd6..e417c19 100644 --- a/svg-flatten/src/test/svg_tests.py +++ b/svg-flatten/src/test/svg_tests.py @@ -38,12 +38,11 @@ def run_svg_flatten(input_file, output_file, *args, **kwargs): try: proc = subprocess.run(args, capture_output=True, check=True) except: - raise - finally: print('Subprocess stdout:') print(proc.stdout.decode()) print('Subprocess stderr:') print(proc.stderr.decode()) + raise def run_cargo_cmd(cmd, args, **kwargs): if cmd.upper() in os.environ: |