Skip to content

Commit 9ea90b3

Browse files
committed
launch_vm: fix environment variable names
Signed-off-by: Denys Fedoryshchenko <denys.f@collabora.com>
1 parent 2a0b3cf commit 9ea90b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/kernel_ci_cloud_labs/launch_vm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def execute_test_via_ssm(self): # pylint: disable=too-many-statements
222222
test_params_cmd = ""
223223
if self.test_params:
224224
for key, value in self.test_params.items():
225-
test_params_cmd += f"export TEST_{key.upper()}={shlex.quote(str(value))}\n"
225+
test_params_cmd += f"export {key.upper()}={shlex.quote(str(value))}\n"
226226

227227
command = f"""#!/bin/bash
228228
set -x

0 commit comments

Comments
 (0)