Verified Commit bfce4567 authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #3467391 by catch, smustgrave: Reduce CPU requirement and concurrency for unit tests

parent fd1154b7
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -204,7 +204,8 @@ variables:
    - <<: *with-database
  variables:
    TESTSUITE: PHPUnit-Unit
    KUBERNETES_CPU_REQUEST: "16"
    KUBERNETES_CPU_REQUEST: "1"
    CONCURRENCY: 6

'✅️ PHPStan Tests':
  <<: [ *default-job-settings ]
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@
 *
 * @coversDefaultClass \Drupal\phpass\Password\PhpassHashedPassword
 * @group phpass
 * @group #slow
 */
class PasswordVerifyTest extends UnitTestCase {

+1 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@
 *
 * @coversDefaultClass \Drupal\Component\Datetime\Time
 * @group Datetime
 * @group #slow
 * @runTestsInSeparateProcesses
 * @preserveGlobalState disabled
 */
+1 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@
/**
 * @coversDefaultClass \Drupal\Component\Utility\Rectangle
 * @group Image
 * @group #slow
 */
class RectangleTest extends TestCase {

+1 −0
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@

/**
 * @group Utility
 * @group #slow
 *
 * @coversDefaultClass \Drupal\Component\Utility\UrlHelper
 */
Loading