Explorar el Código

Remove phpunit whitelist option from travis config

The whitelist is already defined in the phpunit.xml file (loaded with `--configuration phpunit.xml`).
darthmaim hace 9 años
padre
commit
8030f44ed4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      .travis.yml

+ 1 - 1
.travis.yml

@@ -6,6 +6,6 @@ php:
 
 install: travis_retry composer install --no-interaction --prefer-source
 
-script: vendor/bin/phpunit tests --coverage-clover clover.xml --whitelist src
+script: vendor/bin/phpunit tests --coverage-clover clover.xml
 
 after_script: bash <(curl -s https://codecov.io/bash)