From b00fe60f8539720da0e504c0faaacd7e44855cdd Mon Sep 17 00:00:00 2001 From: Chenyang Wang Date: Tue, 26 Nov 2024 10:15:32 +1100 Subject: [PATCH] fix: resolve comments --- .azure-pipelines/run-test-elastictest-template.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines/run-test-elastictest-template.yml b/.azure-pipelines/run-test-elastictest-template.yml index 0f2bac76752..49220090daa 100644 --- a/.azure-pipelines/run-test-elastictest-template.yml +++ b/.azure-pipelines/run-test-elastictest-template.yml @@ -122,13 +122,17 @@ parameters: type: string default: "" + # Enable parallel run for test cases that support parallel run - name: ENABLE_PARALLEL_RUN type: string default: "" + # Specify the file that contains the parallel mode for test cases that need to run in parallel when + # ENABLE_PARALLEL_RUN is set to True. Default value is the test_parallel_modes/default.json file in this repo. + # This field will be ignored if ENABLE_PARALLEL_RUN is set to False. - name: PARALLEL_MODES_FILE type: string - default: "default.json" + default: "" # The number of retries when the script fails. Global retry if retry_cases_include and retry_cases_exclude are both empty, otherwise specific retry - name: RETRY_TIMES