With a lot of packages in 'disabled' state repa info produced
a very long output, which makes it too hard to understand and
analyze. Excluding it should make an output more useful.
Change-Id: I0b2d4999cd974d534c44a4ccb61d87573932c9f2
Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
result = defaultdict(list)
for (repo, arch), target in build_results.iteritems():
for pkg, status in target['packages']:
- if status not in ('succeeded', 'building', 'blocked'):
+ if status not in ('succeeded', 'building',
+ 'blocked', 'disabled'):
result[(repo, arch)].append((pkg, status))
if result:
print