You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As today we are facing failing jobs in all projects using the file above that were fine a day ago. (we didn't change anything)
Message:
Run vendor/bin/phpunit --coverage-text
PHPUnit 7.5.20 by Sebastian Bergmann and contributors.
Code coverage needs to be enabled in php.ini by setting 'xdebug.mode' to 'coverage'
Error: Process completed with exit code 2.
This problem occurs in different PHP versions.
If you take a look at my jobs you can see that PHP 7.1 is green with PHUnit 7.5.20 and PHP 7.3 fails with the same PHPUnit version.
Adding coverage: xdebug to our ci.yml fixes the problem.
But it cant be the solution going through every project adding this line to every ci.yml, right?
The text was updated successfully, but these errors were encountered:
We are currently switching to github actions to check our test suite.
Therefore we're using the same structure in every
ci.yml
, for example:As today we are facing failing jobs in all projects using the file above that were fine a day ago. (we didn't change anything)
Message:
This problem occurs in different PHP versions.
If you take a look at my jobs you can see that PHP 7.1 is green with PHUnit 7.5.20 and PHP 7.3 fails with the same PHPUnit version.
Adding
coverage: xdebug
to ourci.yml
fixes the problem.But it cant be the solution going through every project adding this line to every
ci.yml
, right?The text was updated successfully, but these errors were encountered: