From 6e7c3739b3de8ebd5d1abffd312a359846df0ddf Mon Sep 17 00:00:00 2001 From: patel-bhavin Date: Wed, 1 Sep 2021 13:26:00 -0700 Subject: [PATCH 1/3] adding names in batch --- automated_detection_testing/ci/python_ci_code/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automated_detection_testing/ci/python_ci_code/main.py b/automated_detection_testing/ci/python_ci_code/main.py index 800d40085e..71433f9555 100644 --- a/automated_detection_testing/ci/python_ci_code/main.py +++ b/automated_detection_testing/ci/python_ci_code/main.py @@ -28,7 +28,7 @@ def main(args): if pr_number: response = client.submit_job( - jobName='detection_testing', + jobName='detection_testing' + branch + pr_number, jobQueue='detection_testing_execution_queue', jobDefinition='detection_testing_execution:2', containerOverrides={ @@ -37,7 +37,7 @@ def main(args): ) else: response = client.submit_job( - jobName='detection_testing', + jobName='detection_testing' + branch + pr_number, jobQueue='detection_testing_execution_queue', jobDefinition='detection_testing_execution:2', containerOverrides={ From 95d623f3c773794897b4156a9ca14d0f5558a053 Mon Sep 17 00:00:00 2001 From: patel-bhavin Date: Wed, 1 Sep 2021 13:32:31 -0700 Subject: [PATCH 2/3] name update --- automated_detection_testing/ci/python_ci_code/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automated_detection_testing/ci/python_ci_code/main.py b/automated_detection_testing/ci/python_ci_code/main.py index 71433f9555..f5d357d542 100644 --- a/automated_detection_testing/ci/python_ci_code/main.py +++ b/automated_detection_testing/ci/python_ci_code/main.py @@ -28,7 +28,7 @@ def main(args): if pr_number: response = client.submit_job( - jobName='detection_testing' + branch + pr_number, + jobName='detection_testing_' + branch + '_' + pr_number, jobQueue='detection_testing_execution_queue', jobDefinition='detection_testing_execution:2', containerOverrides={ @@ -37,7 +37,7 @@ def main(args): ) else: response = client.submit_job( - jobName='detection_testing' + branch + pr_number, + jobName='detection_testing_' + branch + '_' + pr_number, jobQueue='detection_testing_execution_queue', jobDefinition='detection_testing_execution:2', containerOverrides={ From 621bd9e50cc578ce5be6bcffd455b053f3a7b822 Mon Sep 17 00:00:00 2001 From: patel-bhavin Date: Wed, 1 Sep 2021 13:37:47 -0700 Subject: [PATCH 3/3] minor --- automated_detection_testing/ci/python_ci_code/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automated_detection_testing/ci/python_ci_code/main.py b/automated_detection_testing/ci/python_ci_code/main.py index f5d357d542..0e83e97a33 100644 --- a/automated_detection_testing/ci/python_ci_code/main.py +++ b/automated_detection_testing/ci/python_ci_code/main.py @@ -28,7 +28,7 @@ def main(args): if pr_number: response = client.submit_job( - jobName='detection_testing_' + branch + '_' + pr_number, + jobName='detection_testing_' + branch, jobQueue='detection_testing_execution_queue', jobDefinition='detection_testing_execution:2', containerOverrides={ @@ -37,7 +37,7 @@ def main(args): ) else: response = client.submit_job( - jobName='detection_testing_' + branch + '_' + pr_number, + jobName='detection_testing_' + branch, jobQueue='detection_testing_execution_queue', jobDefinition='detection_testing_execution:2', containerOverrides={