Issue #3418294: Fix test for D10 core
1 unresolved thread
Related to #3418294
Merge request reports
Activity
- .gitlab-ci.yml 0 → 100644
73 _TARGET_CORE: $CORE_STABLE 74 variables: 75 _TARGET_PHP: "$CORE_PHP_MIN" 76 extends: 77 - .phpunit-base 78 - .phpunit-local 79 80 phpunit-d10-max: 81 needs: 82 - job: composer 83 parallel: 84 matrix: 85 - _TARGET_PHP: "$CORE_PHP_MAX" 86 _TARGET_CORE: $CORE_STABLE 87 variables: 88 _TARGET_PHP: "$CORE_PHP_MAX" - Comment on lines +67 to +88
You appear to be using a parallel job needlessly here as there is only one item in the matrix. Also see https://www.drupal.org/docs/develop/git/using-gitlab-to-contribute-to-drupal/gitlab-ci#s-known-problems - we may wish to be able to trigger jobs manually.
When you manually run a task, its matrix has defined parameters. However, two similar tasks, one tests the minimally compatible version of the PCP and the other the maximally compatible version of the PCP with the current Drupal kernel. In my opinion, this will provide optimal test coverageю
changed this line in version 3 of the diff
Please register or sign in to reply