Skip to content

Commit

Permalink
Merge branch 'bpo/2.9/#3452' into 2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
morozov committed Feb 9, 2019
2 parents bbd004c + 70b9939 commit 496e7e6
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,17 +131,25 @@ before_test:
}
test_script:
- cd C:\projects\dbal
- ps: >-
if ($env:db_version) {
$env:phpunit_config = "tests\appveyor\$($env:db).$($env:db_version).$($env:driver).appveyor.xml"
} else {
$env:phpunit_config = "tests\appveyor\$($env:db).$($env:driver).appveyor.xml"
}
- ps: >-
if ($env:coverage -eq "yes") {
vendor\bin\phpunit -c $($env:phpunit_config) --coverage-clover clover.xml
appveyor-retry ocular code-coverage:upload --format=php-clover clover.xml
} else {
vendor\bin\phpunit -c $($env:phpunit_config)
}
if ($LastExitCode -ne 0) {
$host.SetShouldExit($LastExitCode)
}
after_test:
- ps: >-
if ($env:coverage -eq "yes") {
appveyor-retry ocular code-coverage:upload --format=php-clover clover.xml
}

0 comments on commit 496e7e6

Please sign in to comment.