A collection MR of minor tweaks that I notice while developing but are out-of-scope
Compare changes
Files
1- Luke Grazette authored
!35 (919f3d9a)
The value for ret was defined in the wrong scope and therefore error codes risked being calculated incorreclty.
Slimmed down now
This reduces a lot of hard-coded tck_spec['parameters']['label'] etc, now it's defined once and only once, and all accessing of these variables henceforth are much nicer.
spec = helper.yaml_parser(yaml_fp)
tck_id = hex(spec['ID'])
tck_commits = spec['parameters']['commits']
...
# ->
spec = Spec(yaml_fp)
tck_id = spec.id
tck_commits = spec.commits
...
hackily_change_dataPackages
. POSTPONED TO : #17 (closed)