Skip to content

Commit 60ea349

Browse files
authored
update filter expressions (#68)
1 parent a942617 commit 60ea349

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

files/bin/deploy-iqe-cji.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -134,17 +134,17 @@ def iqe_filter_expression(self) -> str:
134134

135135
iqe_filter_expression = ""
136136
if "aws-smoke-tests" in self.pr_labels:
137-
iqe_filter_expression = "test_api_aws or test_api_ocp_on_aws or test_api_cost_model_aws or test_api_cost_model_ocp_on_aws"
137+
iqe_filter_expression = "test_api_aws or test_api_ocp_on_aws or test_api_ocp_for_aws or test_api_cost_model_aws or test_api_cost_model_ocp_on_aws"
138138
elif "azure-smoke-tests" in self.pr_labels:
139-
iqe_filter_expression = "test_api_azure or test_api_ocp_on_azure or test_api_cost_model_azure or test_api_cost_model_ocp_on_azure"
139+
iqe_filter_expression = (
140+
"test_api_azure or test_api_ocp_on_azure or test_api_ocp_for_azure or test_api_cost_model_azure or test_api_cost_model_ocp_on_azure"
141+
)
140142
elif "gcp-smoke-tests" in self.pr_labels:
141-
iqe_filter_expression = "test_api_gcp or test_api_ocp_on_gcp or test_api_cost_model_gcp or test_api_cost_model_ocp_on_gcp"
142-
elif "oci-smoke-tests" in self.pr_labels:
143-
iqe_filter_expression = "test_api_oci or test_api_cost_model_oci"
143+
iqe_filter_expression = "test_api_gcp or test_api_ocp_on_gcp or test_api_ocp_for_gcp or test_api_cost_model_gcp or test_api_cost_model_ocp_on_gcp"
144144
elif "ocp-smoke-tests" in self.pr_labels:
145145
iqe_filter_expression = (
146146
"(test_api_ocp or test_api_cost_model_ocp or aws_ingest_single or aws_ingest_multi) "
147-
"and not ocp_on_gcp and not ocp_on_azure and not ocp_on_cloud"
147+
"and not ocp_on_gcp and not ocp_on_azure and not ocp_on_cloud and not ocp_for_gcp and not ocp_for_azure"
148148
)
149149
elif "cost-model-smoke-tests" in self.pr_labels:
150150
iqe_filter_expression = "test_api_cost_model or ocp_source_raw"

0 commit comments

Comments
 (0)