From 04581fb640529a84310786b142ac0a8cd9c246f7 Mon Sep 17 00:00:00 2001 From: Zanie Date: Tue, 30 Jan 2024 10:32:33 -0600 Subject: [PATCH] Always request the concise output format during ecosystem checks --- python/ruff-ecosystem/ruff_ecosystem/projects.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/ruff-ecosystem/ruff_ecosystem/projects.py b/python/ruff-ecosystem/ruff_ecosystem/projects.py index fc0139c7d1e14..50c814b049c85 100644 --- a/python/ruff-ecosystem/ruff_ecosystem/projects.py +++ b/python/ruff-ecosystem/ruff_ecosystem/projects.py @@ -206,6 +206,8 @@ def to_ruff_args(self) -> list[str]: "check", "--no-cache", "--exit-zero", + "--output-format", + "concise", f"--{'' if self.preview else 'no-'}preview", ] if self.select: