diff tests/test-hgrc.t @ 44124:d56a2d6f34f0

hgrc: introduce HGRCSKIPREPO to skip reading the repository's hgrc We had a way to change the behavior regarding reading the global and user config, but we had nothing regarding the repository hgrc itself. This option is useful in situation where scripts need to be able to work around strange configuration set by the user in his repository. (and were HGPLAIN is not enough). Differential Revision: https://phab.mercurial-scm.org/D7807
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 07 Jan 2020 11:24:05 +0100
parents 6b6872822b32
children ef11dfc56674
line wrap: on
line diff
--- a/tests/test-hgrc.t	Sat Jan 18 10:37:14 2020 -0800
+++ b/tests/test-hgrc.t	Tue Jan 07 11:24:05 2020 +0100
@@ -258,3 +258,16 @@
   plain: True
   read config from: $TESTTMP/hgrc
   $TESTTMP/hgrc:17: paths.foo=$TESTTMP/bar
+
+Test we can skip the user configuration
+
+  $ cat >> .hg/hgrc <<EOF
+  > [paths]
+  > elephant = babar
+  > EOF
+  $ hg path
+  elephant = $TESTTMP/babar
+  foo = $TESTTMP/bar
+  $ HGRCSKIPREPO=1 hg path
+  foo = $TESTTMP/bar
+