Code formatting for .azure-pipelines/ (#85166)

This commit is contained in:
Matt Clay
2025-05-15 23:14:44 -07:00
committed by GitHub
parent ebd022ee42
commit 14bf64ddf8

View File

@@ -61,9 +61,12 @@ def upload_files(codecov_bin: pathlib.Path, files: t.Tuple[CoverageFile, ...], d
for file in files:
cmd = [
str(codecov_bin),
'--name', file.name,
'--file', str(file.path),
'--name',
file.name,
'--file',
str(file.path),
]
for flag in file.flags:
cmd.extend(['--flags', flag])