commit eff9c6943474af1b21c83f4e48969eeae6b2f529 parent d2bf5e8b201633ac4d816cfb399e444e401bfd6f Author: Marcel <MTRNord@users.noreply.github.com> Date: Sun, 4 Oct 2015 15:29:41 +0200 Update .travis.yml Diffstat:
| M | .travis.yml | | | 6 | ++++-- |
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/.travis.yml b/.travis.yml @@ -5,13 +5,15 @@ php: - 7.0 #RequireDB env: - - DB=mysql + - DB=mysqli #Allow errors in php7 matrix: allow_failures: - php: 7.0 #Create Database before_script: + - wget https://phar.phpunit.de/phpunit.phar + - chmod +x phpunit.phar - mysql -e 'create database RPICMS;' #RunTests -script: phpunit --configuration phpunit_$DB.xml --coverage-text +script: php phpunit.phar --configuration phpunit_$DB.xml --verbose