Skip to content
Snippets Groups Projects
Commit 8027d42fb073 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

benchmark: enable evolve when reading the "project" repository

That repository might constains obsmarkers. Enabling evolve prevent an annoying
warning.
parent 3a855a19e10b
No related branches found
No related tags found
No related merge requests found
......@@ -154,8 +154,9 @@
def get_asv_rev(self):
'''Return currently benchmarked mercurial revision'''
return self.hg('log', '--cwd', self.project_dir, '-T',
'{node|short}', '-r', '.').strip()
return self.hg('log', '--config', 'experimental.evolution=all',
'--cwd', self.project_dir, '-T', '{node|short}',
'-r', '.').strip()
def check_output(self, *args, **kwargs):
"""Helper to run commands
......
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