Просмотр исходного кода

Remove phpunit whitelist option from travis config

The whitelist is already defined in the phpunit.xml file (loaded with `--configuration phpunit.xml`).
darthmaim 9 лет назад
Родитель
Сommit
8030f44ed4
1 измененных файлов с 1 добавлено и 1 удалено
  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)