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

github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2017-03-15 21:26:33 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2017-03-15 21:37:48 +0300
commitc25e49dcadf29837fe9682838d591d5263b67311 (patch)
treeaba3acaccfe41644f495cc58e25971cf8f66a5fb /.travis.yml
parentd90d7173d01ffc7b5bfe45bb64ef1d4c5f743baa (diff)
Downgrade to phpunit5.7
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 9720fba..3bf833f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -26,6 +26,9 @@ 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
- phpenv config-rm xdebug.ini
@@ -37,7 +40,6 @@ before_install:
- mv twofactor_sms core/apps/
before_script:
-
# Set up core
- php -f core/occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''
@@ -55,8 +57,9 @@ script:
# Run PHP tests
- cd tests
- - phpunit --configuration phpunit.xml
- - phpunit --configuration phpunit.integration.xml
+ - ../phpunit --configuration phpunit.xml
+ - ../phpunit --configuration phpunit.integration.xml
matrix:
fast_finish: true
+