commit 568a2df124d458e2d61b601c2584840273f380f5 parent 1d46f355ffd1adbaaf9be172e4464abdcf1a9db2 Author: Marcel <MTRNord@users.noreply.github.com> Date: Sun, 4 Oct 2015 12:45:02 +0200 Update .travis.yml Diffstat:
| M | .travis.yml | | | 11 | +++++++++++ |
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/.travis.yml b/.travis.yml @@ -1,6 +1,17 @@ +#Test php5.6 and php7.0 language: php php: - 5.6 + - 7.0 +#RequireDB env: - DB=mysql +#Allow errors in php7 +matrix: + allow_failures: + - php: 7.0 +#Create Database +before_script: + - mysql -e 'create database RPICMS;' +#RunTests script: phpunit --configuration phpunit_$DB.xml --coverage-text