summaryrefslogtreecommitdiffstats
path: root/.appveyor/coverage_report.ps1
blob: 43e2328351727c0bc6a87e08a196a3b1d2c4ba3c (plain)
1
2
3
4
5
if ($env:COVERAGE -eq 1) {
    & coverage combine;
    & coverage report;
    & coverage xml -i -o coverage_xml.xml;
}