Skip to content

Commit d7ae489

Browse files
committed
ENH: Replace --no-merges with --first-parent for comment
When walking through the git histories, we want the parent versions of the previous commits rather than the --no-merges. The --no-merges results in failures for the merges that include (vnl, hdf5, or other Thirdparty updates).
1 parent 5bbb55d commit d7ae489

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

evaluate-itk-performance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __call__(self, parser, namespace, values, option_string=None):
4040
run_parser.add_argument('benchmark_bin',
4141
help='ITK performance benchmarks build directory', action = FullPaths)
4242
run_parser.add_argument('-r', '--rev-list',
43-
help='Arguments for "git rev-list" to select the range of commits to benchmark, for example: "--no-merges v4.10.0..v5.0rc1"',
43+
help='Arguments for "git rev-list" to select the range of commits to benchmark, for example: "--first-parent v4.10.0..v5.0rc1"',
4444
default='--no-merges HEAD~1..')
4545

4646
upload_parser = subparsers.add_parser('upload',

0 commit comments

Comments
 (0)