trying a bit harder to get a realpath for the py lib because
execnet-rsync does not support working with links --HG-- branch : trunk
This commit is contained in:
parent
30710a9cd6
commit
609776bf26
|
@ -261,8 +261,8 @@ class Config(object):
|
||||||
conftestroots = config.getconftest_pathlist("rsyncdirs")
|
conftestroots = config.getconftest_pathlist("rsyncdirs")
|
||||||
if conftestroots:
|
if conftestroots:
|
||||||
roots.extend(conftestroots)
|
roots.extend(conftestroots)
|
||||||
pydirs = [py.path.local(py.__file__).dirpath(),
|
pydirs = [x.realpath() for x in [py.path.local(py.__file__).dirpath(),
|
||||||
py._impldir]
|
py._impldir]]
|
||||||
roots = [py.path.local(root) for root in roots]
|
roots = [py.path.local(root) for root in roots]
|
||||||
for root in roots:
|
for root in roots:
|
||||||
if not root.check():
|
if not root.check():
|
||||||
|
|
Loading…
Reference in New Issue