From 9fe2ea2a503fd9d9fce0384242d1f02f94071b92 Mon Sep 17 00:00:00 2001 From: Daniel Savchenko <dsavchenko@delors.informatik.rwth-aachen.de> Date: Wed, 18 Dec 2024 08:42:45 +0100 Subject: [PATCH] fixed syntax in subprocess.run --- tests/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run_tests.py b/tests/run_tests.py index e9b3ec39..c2e32ea3 100644 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -184,7 +184,7 @@ print("Working directory for test execution: " + os.getcwd(), flush=True) # call ctest ctest = subprocess.run( - [ctest_executable, "-C", "Debug", "--no-tests=error", "--no-compress-output", "--output-on-failure","--output-junit report.xml"]) + [ctest_executable, "-C", "Debug", "--no-tests=error", "--no-compress-output", "--output-on-failure","--output-junit","report.xml"]) print("Return Code: ", ctest.returncode) -- GitLab