Skip to content

Commit a942617

Browse files
authored
Remove IQE_TESTS_LOCAL_CONF_PATH env var to iqe cji job and addo other envvars (#67)
1 parent 11ac0e9 commit a942617

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

files/bin/deploy-iqe-cji.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,17 @@ def iqe_env_vars_arg(self) -> t.Iterable[str]:
114114
build_url = f"BUILD_URL={self.build_url}"
115115
iqe_parallel_enabled = "IQE_PARALLEL_ENABLED=false"
116116
schema_suffix = self.schema_suffix
117-
local_conf_path = "IQE_TESTS_LOCAL_CONF_PATH=/iqe_venv/lib/python3.12/site-packages/iqe_cost_management/conf_ephemeral_daily_job"
118-
env_var_params = [job_name, build_number, build_url, iqe_parallel_enabled, schema_suffix, local_conf_path]
117+
ibutsu_mode = "IBUTSU_MODE=archive"
118+
ibutsu_project = "IBUTSU_PROJECT=insights-qe"
119+
env_var_params = [
120+
job_name,
121+
build_number,
122+
build_url,
123+
iqe_parallel_enabled,
124+
schema_suffix,
125+
ibutsu_mode,
126+
ibutsu_project,
127+
]
119128
return chain.from_iterable(("--env-var", var) for var in env_var_params)
120129

121130
@cached_property

0 commit comments

Comments
 (0)