Skip to content
Snippets Groups Projects

A collection MR of minor tweaks that I notice while developing but are out-of-scope

Merged Luke Grazette requested to merge lugrazet-minor-tweaks into main
All threads resolved!
5 files
+ 13
8
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 3
3
@@ -91,7 +91,7 @@ def workflow_and_settings(specs: list[str]):
for key, isParameter in zip(['stack', 'workflow'], [True, False]):
ret += __compare(key=key, isParameter=isParameter)
if ref_tck_spec['workflow'] == 'commit-based':
if ref_tck_spec['workflow'] == helper.COMMIT_BASED_WORKFLOW:
ret += __compare(key='commits', isParameter=True)
if ret > 0:
@@ -106,8 +106,8 @@ def workflow_and_settings(specs: list[str]):
settings = tck_spec['parameters']['settings']
allen_v = helper.get_version('Allen', tck_spec)
if workflow == 'commit-based' and 'Allen' in tck_spec['parameters'][
'commits']:
if workflow == helper.COMMIT_BASED_WORKFLOW and 'Allen' in tck_spec[
'parameters']['commits']:
allen_commit = tck_spec['parameters']['commits']['Allen']
allen_html = helper.ALLEN_SEQUENCE_HTML_TEMPLATE.format(allen_commit)
checkout_cmd = f'git -C {standalone_allen_loc} checkout {allen_commit}'
Loading