From 46a02e10a291c89ffc1f910aec6030c9b3b551a6 Mon Sep 17 00:00:00 2001 From: Pavel Minaev Date: Wed, 13 Dec 2023 16:25:09 -0800 Subject: [PATCH] Fix ruff command line arguments. --- azure-pipelines/pipelines.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines/pipelines.yaml b/azure-pipelines/pipelines.yaml index 4a28e2a18..13e9f70ae 100644 --- a/azure-pipelines/pipelines.yaml +++ b/azure-pipelines/pipelines.yaml @@ -39,7 +39,7 @@ jobs: - script: "python3 -m pip install -U ruff" displayName: "Install ruff" - - script: "python3 -m ruff check --format=junit --output-file=$(Build.ArtifactStagingDirectory)/lint-ruff.xml ." + - script: "python3 -m ruff check --output-format=junit --output-file=$(Build.ArtifactStagingDirectory)/lint-ruff.xml ." displayName: "Run ruff" - task: "PublishTestResults@2"