Reenable appveyor for CI

This commit is contained in:
Martin Hořeňovský 2019-12-15 21:17:53 +01:00
parent 69bd213c40
commit ebeeaaeec6
No known key found for this signature in database
GPG key ID: DE48307B8B0D381A
3 changed files with 3 additions and 4 deletions

View file

@ -4,6 +4,6 @@ import glob
import subprocess
if __name__ == '__main__':
cov_files = list(glob.glob('projects/cov-report*.bin'))
cov_files = list(glob.glob('tests/cov-report*.bin'))
base_cmd = ['OpenCppCoverage', '--quiet', '--export_type=cobertura:cobertura.xml'] + ['--input_coverage={}'.format(f) for f in cov_files]
subprocess.check_call(base_cmd)