Before PHPUnit 5.x, the --colors option did not take a parameters. In PHPUnit 5.x and up, it can be set to always.
In short, this behavior isn't incorrect, but the reason I'm asking is because paratest complains about the additional value. If it is removed, phpunit can be interchanged with paratest and it just works.
In case you're interested, the PHPUnit behavior is in this file. You can change 5.0 to other versions in the URL and search for --colors, if you like.
Before PHPUnit 5.x, the
--colors
option did not take a parameters. In PHPUnit 5.x and up, it can be set toalways
.In short, this behavior isn't incorrect, but the reason I'm asking is because paratest complains about the additional value. If it is removed,
phpunit
can be interchanged withparatest
and it just works.In case you're interested, the PHPUnit behavior is in this file. You can change
5.0
to other versions in the URL and search for--colors
, if you like.