Skip to content

Commit 195af4c

Browse files
authored
Fix retry_cases_include and retry_cases_exclude not passing down to test_plan.py (sonic-net#15950)
Description of PR [CI]Fix retry_cases_include and retry_cases_exclude not passing down. It was caused by my another PR: [CI] Enhance elastictest template and test_plan.py sonic-net#15618 Remove unused param. Signed-off-by: Chun'ang Li <chunangli@microsoft.com>
1 parent 8858f4e commit 195af4c

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.azure-pipelines/run-test-elastictest-template.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,6 @@ parameters:
141141
type: string
142142
default: ""
143143

144-
- name: DUMP_KVM_IF_FAIL
145-
type: string
146-
default: "False" # KVM dump has beed deleted
147-
values:
148-
- "True"
149-
- "False"
150-
151144
- name: REQUESTER
152145
type: string
153146
default: ""
@@ -265,6 +258,8 @@ steps:
265258
--mgmt-branch ${{ parameters.MGMT_BRANCH }} \
266259
--stop-on-failure ${{ parameters.STOP_ON_FAILURE }} \
267260
--retry-times ${{ parameters.RETRY_TIMES }} \
261+
--retry-cases-include ${{ parameters.RETRY_CASES_INCLUDE }} \
262+
--retry-cases-exclude ${{ parameters.RETRY_CASES_EXCLUDE }} \
268263
--requester "${{ parameters.REQUESTER }}" \
269264
--max-execute-seconds $((${{ parameters.MAX_RUN_TEST_MINUTES }} * 60)) \
270265
--test-plan-num ${{ parameters.TEST_PLAN_NUM }}

0 commit comments

Comments
 (0)