Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tests: Streamline running of tests against all PHPUnit versions #819

Open
schlessera opened this issue Jul 24, 2023 · 0 comments
Open

Tests: Streamline running of tests against all PHPUnit versions #819

schlessera opened this issue Jul 24, 2023 · 0 comments

Comments

@schlessera
Copy link
Member

schlessera commented Jul 24, 2023

The PR #817 introduced a new configuration file for PHPUnit 10, separate from the previous configuration file. In order to run tests against PHPUnit 10, you now have to run composer test10 instead of only composer test.

It would be preferable to have only a singular entry point of composer test that is smart enough to run PHPUnit against the right configuration file.

While looking into this, we've found that PHPUnit has a very convenient flag --atleast-version <version> which could be used to run the tests conditionally. So, the idea is to have something like this (simplified):

    "test": [
      "phpunit --atleast-version 10 && phpunit -c phpunit10.xml.dist --no-coverage",
      "phpunit --atleast-version 10 || phpunit --no-coverage"
    ],

That should generally work.

However, we have yet to find a way to combine this with the use of @php to reuse the exact PHP process that Composer is running under. According to the Composer documentation, you cannot combine multiple commands like this:

One limitation of this is that you can not call multiple commands in a row like @php install && @php foo. You must split them up in a JSON array of commands.

This is why PR #817 has separate Composer scripts at this point: composer test & composer test10.

This goes against Composer conventions and requires the user to know details about the test flow and dependencies in order to run the tests.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant