Merge pull request #8123 from lorjala/fix_coverage_excludes

Unit tests: fix coverage exclude paths on Windows
pull/8053/merge
Cruz Monrreal 2018-09-14 22:58:11 -05:00 committed by GitHub
commit aee6325baa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ class UnitTestTool(object):
"./coverage.xml"])
for path in excludes:
args.extend(["-e", path])
args.extend(["-e", path.replace("\\", "/")])
if logging.getLogger().getEffectiveLevel() == logging.DEBUG:
args.append("-v")