Fix combined coverage file detection.

Resolves an issue introduced with https://github.com/ansible/ansible/pull/74719
pull/74743/head
Matt Clay 4 years ago
parent 9cfedcd9c9
commit 787f722d94

@ -61,7 +61,7 @@ def command_coverage_combine(args):
if args.delegate: if args.delegate:
if args.docker or args.remote: if args.docker or args.remote:
paths = get_all_coverage_files() paths = get_all_coverage_files()
exported_paths = [path for path in paths if path.endswith('=coverage.combined')] exported_paths = [path for path in paths if os.path.basename(path).split('=')[-1].split('.')[:2] == ['coverage', 'combined']]
if not exported_paths: if not exported_paths:
raise ExportedCoverageDataNotFound() raise ExportedCoverageDataNotFound()

Loading…
Cancel
Save