I use PHPUnit to test my projects, using a phpunit.xml.dist
config file.
The default configuration for all my projects is set to generate html code coverage reports.
Is there anyway I can run the phpunit
command at a given time without generating the code coverage reports without having to change the config file?
This would be something like a --no-coverage
option.