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