Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2017-03-21 20:01:53 +01:00
Родитель 16f760d49e
Коммит ef38a0108d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CC42AC2A7F0E56D8
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -38,6 +38,10 @@ cache:
before_install:
- php --info
# Download phpunit 5.7
- wget https://phar.phpunit.de/phpunit-5.7.phar -O phpunit
- chmod u+x phpunit
# XDebug is only needed if we report coverage -> speeds up other builds
- if [[ "$PHP_COVERAGE" = "FALSE" ]]; then phpenv config-rm xdebug.ini; fi
@ -74,7 +78,7 @@ script:
# Run PHP tests
- cd tests
- phpunit --configuration phpunit.xml
- ../phpunit --configuration phpunit.xml
# Publish PHP coverage to scrutinizer
- if [[ "$PHP_COVERAGE" = "TRUE" ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi