From 36b25c6fd4387887e73e4024c6e1ac96d819dfa8 Mon Sep 17 00:00:00 2001 From: "Dr. Jens Harbott" Date: Fri, 21 Jun 2024 14:01:41 +0200 Subject: [PATCH] Sort output for tools/governance_consistency.py In order to make the output reproducible and allow to track changes more easily, sort the list of deliverables that is output by this tool. Change-Id: I6ff9f475a2dda63be148f7076d9ce2ce021b6882 --- tools/governance_consistency.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/governance_consistency.py b/tools/governance_consistency.py index 8701658eab..873b5039c7 100644 --- a/tools/governance_consistency.py +++ b/tools/governance_consistency.py @@ -81,13 +81,15 @@ def main(args=sys.argv[1:]): print(" (excluding deliverables from " + str(TEAM_EXCEPTIONS) + " team(s)") print(" and deliverables specifically marked as being externally managed)") print() - for d in deliv_in_governance(args) - deliv_in_releases(args): + delta1 = deliv_in_governance(args) - deliv_in_releases(args) + for d in sorted(delta1): print('- ' + d) print() print("Defined in deliverable files but not in (active) governance:") print() - for d in deliv_in_releases(args) - deliv_in_governance(args): + delta2 = deliv_in_releases(args) - deliv_in_governance(args) + for d in sorted(delta2): print('- ' + d)