From 541fea9d7b77f457e089690f8b561d25d623e558 Mon Sep 17 00:00:00 2001 From: Henrique Moody Date: Sun, 5 May 2019 16:50:41 +0200 Subject: [PATCH] Fix syntax issue in ".travis.yml" file On the step that was sending the code coverage to Scrutinizer, there is an issue with the syntax after some changes in the Travis configuration [1]. [1]: 5aba4c8889ba7ac8e3f5982fb6a117be53500096 Signed-off-by: Henrique Moody --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c33650f4..3d1a9b32 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,7 +36,8 @@ jobs: - mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini{.disabled,} - if [[ ! $(php -m | grep -si xdebug) ]]; then echo "xdebug required for coverage"; exit 1; fi script: vendor/bin/phpunit --coverage-clover ./clover.xml - after_script: wget https://scrutinizer-ci.com/ocular.phar + after_script: + - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover ./clover.xml - stage: Quality assurance