6 lines
162 B
Bash
6 lines
162 B
Bash
|
if [[ ${TRAVIS_PHP_VERSION} == ${PHP_LATEST_STABLE} ]]; then
|
||
|
phpunit -c phpunit.xml.dist --coverage-clover ./tmp/clover.xml
|
||
|
else
|
||
|
phpunit -c phpunit.xml.dist
|
||
|
fi
|