parent
1ffe0e7b82
commit
e98b15eb67
|
@ -72,6 +72,7 @@ Bug fixes / Maintenance
|
|||
- perform distributed testing related reporting in the xdist-plugin
|
||||
rather than having dist-related code in the generic py.test
|
||||
distribution
|
||||
- fix homedir detection on Windows
|
||||
|
||||
Changes between 1.3.0 and 1.3.1
|
||||
==================================================
|
||||
|
|
|
@ -618,7 +618,7 @@ class LocalPath(FSBase):
|
|||
try:
|
||||
x = os.environ['HOME']
|
||||
except KeyError:
|
||||
x = os.environ['HOMEPATH']
|
||||
x = os.environ["HOMEDRIVE"] + os.environ['HOMEPATH']
|
||||
return cls(x)
|
||||
_gethomedir = classmethod(_gethomedir)
|
||||
|
||||
|
|
Loading…
Reference in New Issue