diff --git a/aidge_core/unit_tests/test_export.py b/aidge_core/unit_tests/test_export.py index 74fbba50ebedfd778f850ec0363adde7dbfe5e29..e7ba8a396c418a8dc5b05ec4fdf046667ec4ac13 100644 --- a/aidge_core/unit_tests/test_export.py +++ b/aidge_core/unit_tests/test_export.py @@ -50,16 +50,17 @@ def enqueue_output(stream, queue): stream.close() -def run_command(command : list[str], cwd : pathlib.Path): +def run_command(command : list[str], cwd : pathlib.Path = None): """ This function has the job to run a command and return stdout and stderr that are not shown - by subprocess : - + by subprocess.check_call / call. + If the subprocess returns smthg else than 0, it will raise an error. Arg: command : written with the same syntax as subprocess.call + cwd : path from where the command must be called """ process = subprocess.Popen( - command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True + command, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True ) stdout_queue = queue.Queue()