Skip to content

Commit

Permalink
Bump version to 2.6.0 - Penetrating Pineapple
Browse files Browse the repository at this point in the history
  • Loading branch information
sahib committed Jun 3, 2017
1 parent 1c8ba5f commit 35836b8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.0 Penetrating Pineapple
2.6.0 Penetrating Pineapple
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

The format follows [keepachangelog.com]. Please stick to it.

## [2.5.0 Penetrating Pineapple] -- [unreleased]
## [2.6.0 Penetrating Pineapple] -- 2017-06-03

### Fixed

Expand Down
14 changes: 13 additions & 1 deletion tests/test_speed/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,17 @@ def get_benchid(self):
return 'rmlint-v2.2.2'


class Rmlint246(Rmlint):
script = 'rmlint-v2.4.6.sh'

def get_binary(self):
return 'rmlint/rmlint-v2.4.6'

def get_benchid(self):
return 'rmlint-v2.4.6'



class Rmlint222Paranoid(Rmlint222):
def get_options(self, paths):
return '-pp ' + Rmlint222.get_options(self, paths)
Expand Down Expand Up @@ -669,6 +680,7 @@ def main():
# RmlintSpot(),
# RmlintSpotParanoid(),
Rmlint222(),
Rmlint246(),
Rmlint222Paranoid(),
RmlintXXHash(),
# RmlintSpooky(),
Expand All @@ -681,7 +693,7 @@ def main():
# Actual competitors:
Fdupes(),
Rdfind(),
Dupd()
# Dupd()
]

# Filter the `programs` list if necessary.
Expand Down
3 changes: 3 additions & 0 deletions tests/test_speed/plot_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ def unpack(chart, data, bench_name, add_x_labels=True):
for program in sorted(data['programs']):
result = data['programs'][program]

if len(result["numbers"]) < n_runs:
continue

points = []
for key in [str(run + 1) for run in range(n_runs)] + ['average']:
points.append(result['numbers'][key])
Expand Down

0 comments on commit 35836b8

Please sign in to comment.