From 88e0d66c287975ae0558466807e3bab4360da48e Mon Sep 17 00:00:00 2001 From: Florian OMNES Date: Thu, 23 Jan 2025 14:17:14 +0100 Subject: [PATCH] Rebase most changes --- .../cucumber/features/steps/common_steps/simulator_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/cucumber/features/steps/common_steps/simulator_utils.py b/src/tests/cucumber/features/steps/common_steps/simulator_utils.py index e48b5a9da3..583e085e07 100644 --- a/src/tests/cucumber/features/steps/common_steps/simulator_utils.py +++ b/src/tests/cucumber/features/steps/common_steps/simulator_utils.py @@ -27,7 +27,7 @@ def init_simu(context): def build_antares_solver_command(context): - command = [context.config.userdata["antares-solver"], "-i", str(context.study_path)] + command = [context.config.userdata["antares-solver"], "-i", f'"{context.study_path}"'] solver = "sirius" if "solver" in context.config.userdata: solver = context.config.userdata["solver"]