From 36ff1b6e623d46f33f97747b8237701d1a8dc890 Mon Sep 17 00:00:00 2001 From: Ted Bowman <ted@tedbow.com> Date: Thu, 14 Oct 2021 13:20:58 -0400 Subject: [PATCH] fix drupalci.yml accidental changes --- drupalci.yml | 37 ++++++++++++++++++------------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/drupalci.yml b/drupalci.yml index 81ef61fd37..093eebe8cf 100644 --- a/drupalci.yml +++ b/drupalci.yml @@ -47,29 +47,28 @@ build: # halt-on-fail can be set on the run_tests tasks in order to fail fast. # suppress-deprecations is false in order to be alerted to usages of # deprecated code. -# run_tests.phpunit: -# types: 'PHPUnit-Unit' -# testgroups: '--all' -# suppress-deprecations: false -# halt-on-fail: false + run_tests.phpunit: + types: 'PHPUnit-Unit' + testgroups: '--all' + suppress-deprecations: false + halt-on-fail: false run_tests.kernel: types: 'PHPUnit-Kernel' testgroups: '--all' suppress-deprecations: false - halt-on-fail: falses - repeat: 100 -# run_tests.build: -# # Limit concurrency due to disk space concerns. -# concurrency: 15 -# types: 'PHPUnit-Build' -# testgroups: '--all' -# suppress-deprecations: false -# halt-on-fail: false -# run_tests.functional: -# types: 'PHPUnit-Functional' -# testgroups: '--all' -# suppress-deprecations: false -# halt-on-fail: false + halt-on-fail: false + run_tests.build: + # Limit concurrency due to disk space concerns. + concurrency: 15 + types: 'PHPUnit-Build' + testgroups: '--all' + suppress-deprecations: false + halt-on-fail: false + run_tests.functional: + types: 'PHPUnit-Functional' + testgroups: '--all' + suppress-deprecations: false + halt-on-fail: false # Functional JavaScript tests require a concurrency of 1 because there is # only one instance of PhantomJS on the testbot machine. #run_tests.javascript: -- GitLab