From b15f93a42131d1e1c5aee0c64a0b2cb6c5dc4572 Mon Sep 17 00:00:00 2001 From: Tomáš Votruba Date: Sun, 29 Mar 2015 23:49:25 +0200 Subject: composer: add PHP 7, use travis' phpunit --- .travis.yml | 22 +++++++++++++++------- 1 file 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 + -- cgit v1.2.3