From daa8ae214010d7bd092ddfb24d60ec56a3199492 Mon Sep 17 00:00:00 2001 From: Iori Yanokura Date: Mon, 17 Feb 2025 17:43:38 +0900 Subject: [PATCH] wip --- tests/skrobot_tests/test_console_scripts.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/skrobot_tests/test_console_scripts.py b/tests/skrobot_tests/test_console_scripts.py index b59c8c28..392af029 100644 --- a/tests/skrobot_tests/test_console_scripts.py +++ b/tests/skrobot_tests/test_console_scripts.py @@ -38,4 +38,7 @@ def test_convert_urdf_mesh(self): print('Executing {}'.format(cmd)) result = subprocess.run(cmd, shell=True, **kwargs) print(cmd) + if result.returncode != 0: + print(result.stdout.decode()) + print(result.stderr.decode()) assert result.returncode == 0