Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Paroz <github@oparoz.com>2015-08-03 15:37:58 +0300
committerOlivier Paroz <github@oparoz.com>2015-08-03 15:37:58 +0300
commit3df613018a0215405de4647ce3cb5bd3b3eb547f (patch)
treecc9993fd3418be318a8ce6e18056e1bbab52f772 /.travis.yml
parent5cab15ba5a646c2930f9912602463fab628d3dda (diff)
Fix phpcov call
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 0ea77892..7fe64d4f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -36,7 +36,8 @@ script:
- phpunit -c phpunit.xml
- phpunit -c phpunit.integration.xml
- - phpcov merge --clover tests/clover.xml tests/cov
+ # Merge clover reports
+ - sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then php vendor/bin/phpcov merge --clover tests/clover.xml tests/cov; fi;"
# Create coverage report
- sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi"