summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-03-30 20:43:14 -0400
committerFrederic Guillot <fred@kanboard.net>2015-03-30 20:43:14 -0400
commitfe154443fa654afda77ba47524cfb1917f2d3ded (patch)
treef04db6f2acf17357119c68ff2823e31845880f43 /.travis.yml
parent19c0a35d89ae222ec73d61d163297ca7a907079d (diff)
parentb15f93a42131d1e1c5aee0c64a0b2cb6c5dc4572 (diff)
Merge pull-request #747
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml22
1 files changed, 15 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index 1596ec9a..398dda1b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,12 +1,20 @@
language: php
php:
- - "5.6"
- - "5.5"
- - "5.4"
- - "5.3"
+ - 7.0
+ - 5.6
+ - 5.5
+ - 5.4
+ - 5.3
-before_script: wget https://phar.phpunit.de/phpunit.phar
-script:
+matrix:
+ fast_finish: true
+ allow_failures:
+ - php: 7.0
+
+before_script:
- composer install
- - php phpunit.phar -c tests/units.sqlite.xml \ No newline at end of file
+
+script:
+ - phpunit -c tests/units.sqlite.xml
+