From 152bf5654aed968421bbf2eeefe5a4579244e8de Mon Sep 17 00:00:00 2001 From: nod_ <nod_@598310.no-reply.drupal.org> Date: Tue, 20 Aug 2024 00:22:44 +0200 Subject: [PATCH] Issue #3468832 by catch, smustgrave: Reduce concurrency for build tests (cherry picked from commit b410d970bb09d28891d2205cca9251b5b0c30459) --- .gitlab-ci/pipeline.yml | 1 + core/tests/Drupal/BuildTests/Command/GenerateThemeTest.php | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitlab-ci/pipeline.yml b/.gitlab-ci/pipeline.yml index e766c651ca58..6cda6e2f978d 100644 --- a/.gitlab-ci/pipeline.yml +++ b/.gitlab-ci/pipeline.yml @@ -160,6 +160,7 @@ variables: variables: TESTSUITE: PHPUnit-Build KUBERNETES_CPU_REQUEST: "2" + CONCURRENCY: "4" services: - <<: *with-database diff --git a/core/tests/Drupal/BuildTests/Command/GenerateThemeTest.php b/core/tests/Drupal/BuildTests/Command/GenerateThemeTest.php index e4f7c40f2005..3a2eeb13d551 100644 --- a/core/tests/Drupal/BuildTests/Command/GenerateThemeTest.php +++ b/core/tests/Drupal/BuildTests/Command/GenerateThemeTest.php @@ -19,6 +19,7 @@ * @requires extension pdo_sqlite * * @group Command + * @group #slow */ class GenerateThemeTest extends QuickStartTestBase { -- GitLab