Merge pull request #8141 from kdelee/fix_analytics_tests

Print one targz per line (analytics gather)

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2020-09-14 22:04:23 +00:00 committed by GitHub
commit 22bff7adec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,8 @@ class Command(BaseCommand):
return
tgzfiles = gather(collection_type='manual' if not opt_dry_run else 'dry-run', since = since, until = until)
if tgzfiles:
self.logger.debug(tgzfiles)
for tgz in tgzfiles:
self.logger.debug(tgz)
else:
self.logger.error('No analytics collected')
if opt_ship: