mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #8123 from lorjala/fix_coverage_excludes
Unit tests: fix coverage exclude paths on Windowspull/8053/merge
commit
aee6325baa
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue