Skip to content
Snippets Groups Projects
Commit 68f65450 authored by Philippe Pepiot's avatar Philippe Pepiot
Browse files

Disable reading local hg config

This avoid reading local hg config that may interfer with benchmarks results.
Also we don't need the alias trick anymore when running hg commands.
parent 2e74034c
No related branches found
No related tags found
No related merge requests found
......@@ -149,7 +149,7 @@
self.repo_path = os.path.join(REPOS_DIR, self.repo_name)
# Use a clean environ to run command
self.environ = {}
self.environ = {'HGRCPATH': ''}
class BaseTrackTestSuite(BaseTestSuite):
......@@ -173,8 +173,6 @@
cmd = [
self.hgpath,
"--cwd", self.repo_path,
# Add an alias to bypass potential one
"--config", "alias.%s=%s" % (command, command),
command,
] + list(args)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment