DEV Community

Discussion on: Setup PHP PCOV for 5 times faster PHPUnit code coverage

Collapse
 
lewiscowles1986 profile image
Lewis Cowles

Two notes. XDEBUG_MODE=off can disable xdebug.
phpunit.xml can receive a range of input under a <php> section, which allows you to set ini values, like the ones you were setting with -d.

Great write-up.