also apply normpath to junitxml file path
This commit is contained in:
parent
410438f187
commit
89a98e3276
|
@ -65,7 +65,8 @@ def pytest_unconfigure(config):
|
||||||
|
|
||||||
class LogXML(object):
|
class LogXML(object):
|
||||||
def __init__(self, logfile, prefix):
|
def __init__(self, logfile, prefix):
|
||||||
self.logfile = os.path.expanduser(os.path.expandvars(logfile))
|
logfile = os.path.expanduser(os.path.expandvars(logfile))
|
||||||
|
self.logfile = os.path.normpath(logfile)
|
||||||
self.prefix = prefix
|
self.prefix = prefix
|
||||||
self.test_logs = []
|
self.test_logs = []
|
||||||
self.passed = self.skipped = 0
|
self.passed = self.skipped = 0
|
||||||
|
|
Loading…
Reference in New Issue