Drupal 8 pipelines are currently failing because they suddenly started to try and run all tests instead of just those defined by this module (and consequently running out of time).
The last passing pipeline was this one, followed by this one that failed. As they ran on the same commit the cause can’t really be within this module. My first guess would be that it’s a change in the GitLab Templates project: the former pipeline used version 1.15.5 of the templates while the latter used version 1.15.6. (See changes.)
Anyways, maybe I don’t need to figure out the root cause of the problem to just fix the immediate issue.
Issue fork searchstax-3607141
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
drunken monkeyComment #4
drunken monkeyComment #5
drunken monkeyI think I spotted the problem in the GitLab Templates projected and created a ticket there. The problem is that this change caused
--allto be added to therun-tests.shcall which does not have the apparently intended effect in Drupal 8.I’m now trying to work around this in our own GitLab CI config, but it currently seems like the only way is to disable concurrent test execution as that will avoid
run-tests.shentirely.Comment #7
drunken monkeyMerged the workaround. Not ideal, though, as it increases the run time of the job by a factor of 4, apparently.