fix coverage exclude paths on Windows

pull/8123/head
Lari-Matias Orjala 2018-09-13 20:30:08 +03:00
parent 2e5e23f7c1
commit cad2761687
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")