Skip to content

Commit

Permalink
Dooooh! Fix ordering issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Aug 11, 2015
1 parent 339f28e commit d996a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def __init__(self):
pytest_benchmark_update_commit_info=lambda **kwargs: None,
))
self.group_by = 'group'
for bench_file in self.storage.listdir("[0-9][0-9][0-9][0-9]_*.json"):
for bench_file in reversed(self.storage.listdir("[0-9][0-9][0-9][0-9]_*.json", sort=True)):
with bench_file.open('rU') as fh:
data = json.load(fh)
self.benchmarks.extend(
Expand Down

0 comments on commit d996a39

Please sign in to comment.