pestphp / pest

Pest is an elegant PHP testing Framework with a focus on simplicity, meticulously designed to bring back the joy of testing in PHP.
https://pestphp.com
MIT License
9.12k stars 319 forks source link

[2.x] fix: warn if no code coverage driver #1060

Closed calebdw closed 5 months ago

calebdw commented 6 months ago

What:

Description:

Hello!

An exception is thrown if a coverage report is defined in the phpunit.xml but there's no coverage driver available (when running in parallel):

image

This PR updates the runner to check if there's a driver (and warns if there's not) before trying to compile the coverage information:

image

Thanks!