From 175e2c4a156cadf794031d2086499ec2a3f6034c Mon Sep 17 00:00:00 2001 From: hmuralidhar <hmuralidhar@gitlab.com> Date: Wed, 25 Sep 2024 12:51:55 +1000 Subject: [PATCH] Set threshold to 15 for parallel jobs --- qa/tasks/ci.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/ci.rake b/qa/tasks/ci.rake index 5421a0f6a4733..4614838e291cf 100644 --- a/qa/tasks/ci.rake +++ b/qa/tasks/ci.rake @@ -48,7 +48,7 @@ namespace :ci do files_pattern = "{#{test_paths.join(',')}}" - elsif tests && tests.split(' ').size > 50 + elsif tests && tests.split(' ').size > 15 # When number of QA_TESTS exceeds threshold, set KNAPSACK_FILE_PATTERN for parallel execution files_pattern = "{#{tests.split(' ').join(',')}}" end -- GitLab