# HG changeset patch # User Idan Kamara # Date 1315598757 -10800 # Node ID bdc1650f216cfe4c918c40667411daf7dacfadc8 # Parent e89dd99638cebbe4a163631b9fdac331b1a590a5 tests: set HGRCPATH so local hgrc's aren't loaded diff -r e89dd99638ce -r bdc1650f216c tests/__init__.py --- a/tests/__init__.py Fri Sep 09 19:10:02 2011 +0300 +++ b/tests/__init__.py Fri Sep 09 23:05:57 2011 +0300 @@ -16,6 +16,7 @@ os.environ["HGENCODINGMODE"] = "strict" tmpdir = tempfile.mkdtemp('', 'python-hglib.') os.environ["HGTMP"] = os.path.realpath(tmpdir) + os.environ["HGRCPATH"] = "" def tearDown(self): os.chdir('..')