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-04 21:06:32 +0300
committerOlivier Paroz <github@oparoz.com>2015-08-04 21:06:32 +0300
commitac407d086570fca5f86a78ba28b0bf41cfc34576 (patch)
tree9dd0fb3ca8fa7a6272a8923e885ac8209d842798 /.travis.yml
parent8b9a679fedf078a1e663e86c14315700db81249e (diff)
Integration tests are not compatible with PHP 7.0
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 6fdf8f56..e25de1f9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -35,7 +35,7 @@ script:
# Run phpunit tests
- phpunit -c phpunit.xml
- - phpunit -c phpunit.integration.xml
+ - sh -c "if [ '$TRAVIS_PHP_VERSION' != '7' ]; then phpunit -c phpunit.integration.xml; fi;"
# Merge clover reports
- sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then php vendor/bin/phpcov merge --clover tests/clover.xml tests; fi;"