summaryrefslogtreecommitdiffstatshomepage
path: root/.gitlab-ci/pipeline.yml
diff options
context:
space:
mode:
authorcatch <6915-catch@users.noreply.drupalcode.org>2025-04-15 03:33:01 +0100
committercatch <6915-catch@users.noreply.drupalcode.org>2025-04-15 03:33:01 +0100
commit80223725504e95cf9eb1c71c3b0200a6f5b3503b (patch)
tree22155aba1cd231448a45594288e658fc827b8535 /.gitlab-ci/pipeline.yml
parent1ec49896982a58948c471c81907858f4333b9aa7 (diff)
downloaddrupal-80223725504e95cf9eb1c71c3b0200a6f5b3503b.tar.gz
drupal-80223725504e95cf9eb1c71c3b0200a6f5b3503b.zip
Issue #3519177 by acbramley, mstrelan: Attach selenium service in Repeat test class job and add variable for number of repeats
Diffstat (limited to '.gitlab-ci/pipeline.yml')
-rw-r--r--.gitlab-ci/pipeline.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci/pipeline.yml b/.gitlab-ci/pipeline.yml
index ee6f1e0e176..dc89219805f 100644
--- a/.gitlab-ci/pipeline.yml
+++ b/.gitlab-ci/pipeline.yml
@@ -113,7 +113,7 @@ variables:
echo ' "Key" to "REPEAT_TEST_CLASS" and "Value" to "Drupal\Tests\ckeditor5\FunctionalJavascript\MediaLinkabilityTest"';
exit 1;
else
- sudo -u www-data -E -H php ./core/scripts/run-tests.sh --color --keep-results --concurrency "$CONCURRENCY" --repeat "100" --sqlite "./sites/default/files/tests.sqlite" --dburl $SIMPLETEST_DB --url $SIMPLETEST_BASE_URL --verbose --non-html --class $REPEAT_TEST_CLASS
+ sudo -u www-data -E -H php ./core/scripts/run-tests.sh --color --keep-results --concurrency "$CONCURRENCY" --repeat "$REPEAT_COUNT" --sqlite "./sites/default/files/tests.sqlite" --dburl $SIMPLETEST_DB --url $SIMPLETEST_BASE_URL --verbose --non-html --class $REPEAT_TEST_CLASS
fi
################
@@ -242,8 +242,10 @@ variables:
allow_failure: true
variables:
REPEAT_TEST_CLASS: 'Drupal\Tests\Change\Me'
+ REPEAT_COUNT: 100
services:
- <<: *with-database
+ - <<: *with-selenium-chrome
'🚲 Performance tests':
<<: [ *default-job-settings ]