Przeglądaj źródła

Remove phpunit whitelist option from travis config

The whitelist is already defined in the phpunit.xml file (loaded with `--configuration phpunit.xml`).
darthmaim 10 lat temu
rodzic
commit
8030f44ed4
1 zmienionych plików z 1 dodań i 1 usunięć
  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)