def determine_series(selected, col, git_dir, count, branch, work_in_output):
"""Determine the series which is to be built, if any
+ If there is a series, the commits in that series are numbered by setting
+ their sequence value (starting from 0). This is used by tests.
+
Args:
selected (list of Board): List of Board objects that are marked
selected
# Honour the count
series = patchstream.get_metadata_for_list(branch,
git_dir, count, series=None, allow_overwrite=True)
+
+ # Number the commits for test purposes
+ for i, commit in enumerate(series.commits):
+ commit.sequence = i
else:
series = None
return series
if series:
commits = series.commits
- # Number the commits for test purposes
- for i, commit in enumerate(commits):
- commit.sequence = i
else:
commits = None