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

time_archive: disable the "files" variant

The `time_archive` benchmark is a long and "files" tends to files on larger
repository. We disable it for now. If in the future we start focusing on `hg
archive` performance, we can start optimizing this tests.
parent 4be60bd91f2f
No related branches found
No related tags found
No related merge requests found
......@@ -128,7 +128,12 @@
class ArchiveTimeTestSuite(BaseTestSuite):
timeout = 300
param_names = TimeTestSuite.param_names + ['type']
params = TimeTestSuite.params + [['files', 'tar']]
# The "file" type have been disabled. It does not yield very different
# result than tar and taks a lot of time. creating and deleting many file
# is expensive compared to creating and deleting a single tar
#
# params = TimeTestSuite.params + [['files', 'tar']]
params = TimeTestSuite.params + [['tar']]
def setup(self, *args, **kwargs):
super(ArchiveTimeTestSuite, self).setup(*args, **kwargs)
......
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