77 - hhvm
88
99env :
10- - DB=mysql ENABLE_SECOND_LEVEL_CACHE=1
11- - DB=pgsql ENABLE_SECOND_LEVEL_CACHE=1
12- - DB=sqlite ENABLE_SECOND_LEVEL_CACHE=1
13- - DB=mysql ENABLE_SECOND_LEVEL_CACHE=0
14- - DB=pgsql ENABLE_SECOND_LEVEL_CACHE=0
15- - DB=sqlite ENABLE_SECOND_LEVEL_CACHE=0
10+ - DB=mysql
11+ - DB=pgsql
12+ - DB=sqlite
1613
1714before_script :
1815 - sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS doctrine_tests;' -U postgres; fi"
@@ -22,7 +19,9 @@ before_script:
2219 - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create database IF NOT EXISTS doctrine_tests_tmp;create database IF NOT EXISTS doctrine_tests;'; fi"
2320 - composer install --prefer-source --dev
2421
25- script : phpunit -v --configuration tests/travis/$DB.travis.xml
22+ script :
23+ - ENABLE_SECOND_LEVEL_CACHE=0 ./vendor/bin/phpunit -v -c tests/travis/$DB.travis.xml --coverage-clover ./build/logs/clover.xml
24+ - ENABLE_SECOND_LEVEL_CACHE=1 ./vendor/bin/phpunit -v -c tests/travis/$DB.travis.xml --coverage-clover ./build/logs/clover-slc.xml --exclude-group performance,non-cacheable,locking_functional
2625
2726after_script :
2827 - php vendor/bin/coveralls -v
@@ -32,11 +31,6 @@ matrix:
3231 - php : hhvm
3332 exclude :
3433 - php : hhvm
35- env : DB=pgsql ENABLE_SECOND_LEVEL_CACHE=0 # driver currently unsupported by HHVM
34+ env : DB=pgsql # driver currently unsupported by HHVM
3635 - php : hhvm
37- env : DB=pgsql ENABLE_SECOND_LEVEL_CACHE=1 # driver currently unsupported by HHVM
38- - php : hhvm
39- env : DB=mysqli ENABLE_SECOND_LEVEL_CACHE=0 # driver currently unsupported by HHVM
40- - php : hhvm
41- env : DB=mysqli ENABLE_SECOND_LEVEL_CACHE=1 # driver currently unsupported by HHVM
42-
36+ env : DB=mysqli # driver currently unsupported by HHVM
0 commit comments