From 609776bf26ad6dbd42ba9926ff889f7c2f25eede Mon Sep 17 00:00:00 2001 From: holger krekel Date: Thu, 29 Oct 2009 20:30:09 +0100 Subject: [PATCH] trying a bit harder to get a realpath for the py lib because execnet-rsync does not support working with links --HG-- branch : trunk --- _py/test/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_py/test/config.py b/_py/test/config.py index e1c132988..cad7b15c8 100644 --- a/_py/test/config.py +++ b/_py/test/config.py @@ -261,8 +261,8 @@ class Config(object): conftestroots = config.getconftest_pathlist("rsyncdirs") if conftestroots: roots.extend(conftestroots) - pydirs = [py.path.local(py.__file__).dirpath(), - py._impldir] + pydirs = [x.realpath() for x in [py.path.local(py.__file__).dirpath(), + py._impldir]] roots = [py.path.local(root) for root in roots] for root in roots: if not root.check():