From 14bf64ddf863b2b840c22170de784ea2a46f9cfd Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Thu, 15 May 2025 23:14:44 -0700 Subject: [PATCH] Code formatting for .azure-pipelines/ (#85166) --- .azure-pipelines/scripts/publish-codecov.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines/scripts/publish-codecov.py b/.azure-pipelines/scripts/publish-codecov.py index 41f30af76d4..ae328a5cf5e 100755 --- a/.azure-pipelines/scripts/publish-codecov.py +++ b/.azure-pipelines/scripts/publish-codecov.py @@ -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])