Switch to using run-tests.sh by default

Created on 14 May 2024, 11 months ago

Problem/Motivation

Using run-tests.sh with concurrency on is *much* faster than not using that.

From @berdir in this slack thread: https://drupal.slack.com/archives/CGKLP028K/p1715113195896199
> on concurrency BC: I get that, but it seems very unlikely that it will break something and it makes tests so much faster, which imho translates directly into how much money DA spends on this. for token module with a fairly limited set of tests, it cut the phpunit job from 3 to 1 minute, for webform, it would be 5m instead of 33min (see https://www.drupal.org/project/webform/issues/3402134#comment-15323262 📌 Test Webform against upcoming 10.2.x on GitLab CI — and use concurrency to make tests 6x faster (on GitLab CI) Needs work )

As I wrote, I think not a lot of projects should have a problem with this, I never did with all the projects where I enabled it, and my understanding is that it it will also help with D11/PHPUnit 10 compatibility because run-tests.sh abstracts the specific phpunit arguments that are needed away.

If you're worried about BC then one option would be to only do it on next major for now and maybe enable it for all when D11.0 becomes the current minor.

But my personal recommendation is to just switch it. I expect fewer disruptions than for example the cspell job addition which confused quite a few people.

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

📌 Task
Status

Active

Component

gitlab-ci

Created by

🇨🇭Switzerland berdir Switzerland

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @berdir
  • 🇧🇪Belgium BramDriesen Belgium 🇧🇪

    +1 For this change! It really makes a huge difference on modules with a huge set of tests. For a fact, @Berdir was the person who made me aware of the GitLab CI variable to enable concurrent test runs. Been adding that variable to quite some projects now.

  • 🇪🇸Spain fjgarlin

    Agree that it is the sensible default. The only reason why it's not is because this was added after the plain PHPUnit. For this reason, I don't think that we should just switch it, at least without a proper handling of BC.

  • Merge request !204Enable phpunit concurrent by default → (Open) created by fjgarlin
  • Status changed to Needs work 11 months ago
  • 🇪🇸Spain fjgarlin

    Initial MR created. Need to work on BC now. We need to detect if _PHPUNIT_EXTRA is used and if it is, then see if the project has overwritten _PHPUNIT_CONCURRENT. If it hasn't that, means that we need to throw a warning and either fail, or set _PHPUNIT_CONCURRENT to 0 and throw a warning.

  • 🇪🇸Spain fjgarlin

    Projects using _PHPUNIT_EXTRA: https://git.drupalcode.org/search?group_id=2&repository_ref=main&scope=b...

    I suggest creating a _RUN_TESTS_EXTRA variable, empty by default.
    Then, I think this could be a way to go.


    Almost no template will have this explicitly set, as it is the default so far.
    - If _PHPUNIT_EXTRA is not empty, then we need to warn the users that they need to set _PHP_CONCURRENT: 0 if they want to continue using it. We can actually set the value in the .pre job and then display a warning.


    - If _RUN_TESTS_EXTRA is empty, and there is value in _PHPUNIT_EXTRA (and _PHP_CONCURRENT is set to 1), we populate it like this: _RUN_TESTS_EXTRA: $_PHPUNIT_EXTRA and display a warning message for users to change to the new format.


    This means that the templates have not overridden _PHP_CONCURRENT nor _PHPUNIT_EXTRA. These are the challenging ones, as something that was working might suddenly stop working.

    I guess the only way to go about it is to show a warning message about it saying that it has changed. We could potentially run concurrent first, and if these fail, then non-concurrent, and then show the warning to users, but this would mean a double run (money++) and then maintainers might decide not to change it.

    I think that the warning at the beginning of the job, right before running the tests, might be enough.

  • 🇪🇸Spain fjgarlin

    From @berdir via slack: https://drupal.slack.com/archives/CGKLP028K/p1718272288626879

    @fjgarlin in case you need more reasons to push the change to using concurrency by default, https://git.drupalcode.org/project/hal/-/merge_requests/7/pipelines is a good example. test execution time goes from 30min to <3min after adding that

  • 🇪🇸Spain fjgarlin

    If we work on a 2.x effort, we should probably unify and only have one way to run the tests. I guess like core, with "run-tests.sh", but we'd need to coordinate with them to see if this is also the long term goal for running the tests.

Production build 0.71.5 2024