Refactor CI workflow to use run-tests.sh for speed, and always run performance tests
1 unresolved thread
Merge request reports
Activity
added 1 commit
- 3f504d9d - Remove --keep-results so we don't need to pass --sqlite
162 extends: .phpunit-base 163 parallel: 164 matrix: 165 *components 166 variables: 167 # Skip performance tests by default. 168 PHPUNIT_OPTIONS: '--exclude-group=OpenTelemetry $CI_PROJECT_DIR/$DIR' 169 174 rules: 170 175 # Don't test the `drupal_cms_analytics` recipe, because it is a metapackage. 171 176 - if: $DIR =~ /\/drupal_cms_analytics$/ 172 177 when: never 173 - if: $PERFORMANCE_TEST == "1" 174 when: never 175 178 - when: on_success 176 179 177 test performance: Performance tests should continue to run serially because there can be issues with performance tests and multiple chromedriver instances, and also with timings when tests run at the same time. Especially if/when things finally work with https://gander.tag1.io/?orgId=1&refresh=30s (which I couldn't get working for Drupal CMS when I tried last time.
Please register or sign in to reply