diff --git a/.travis.yml b/.travis.yml index 94dbad9..6de055d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,8 +9,8 @@ install: - composer install env: - - DB=mysql - - DB=pgsql + - DB=mysql, ENVIRONMENT=testing-mysql + - DB=pgsql, ENVIRONMENT=testing-pgsql before_script: - sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS todo_test;' -U postgres; fi" @@ -25,4 +25,12 @@ script: after_script: - wget https://scrutinizer-ci.com/ocular.phar - - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml \ No newline at end of file + - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml + +matrix: + exclude: + - php: hhvm + env: DB=pgsql, ENVIRONMENT=testing-pgsql + allow_failures: + - php: hhvm + fast_finish: true \ No newline at end of file