1 new changeset in pytest: http://bitbucket.org/hpk42/pytest/changeset/b199f0432dc0/ changeset: b199f0432dc0 branches: user: RonnyPfannschmidt date: 2011-05-28 16:21:57 summary: also apply normpath to junitxml file path affected #: 1 file (44 bytes)
--- a/_pytest/junitxml.py Sat May 28 14:38:15 2011 +0200 +++ b/_pytest/junitxml.py Sat May 28 16:21:57 2011 +0200 @@ -65,7 +65,8 @@ class LogXML(object): 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.test_logs = [] self.passed = self.skipped = 0 Repository URL: https://bitbucket.org/hpk42/pytest/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. _______________________________________________ py-svn mailing list py-svn@codespeak.net http://codespeak.net/mailman/listinfo/py-svn