From 897b7f75b91efc0f168e1d61870c44d160b5f7c3 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 30 Jan 2024 10:44:15 -0600 Subject: [PATCH] Always request the concise output format during ecosystem checks (#9708) Fixes a regression in the ecosystem checks from https://github.com/astral-sh/ruff/pull/9687 which was causing them to run for multiple hours due to the size of the output. We need the concise format for comparisons. We should probably update the ecosystem checks to actually diff the full output in the future because that'd be nice. --- 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 fc0139c7d1..50c814b049 100644 --- a/python/ruff-ecosystem/ruff_ecosystem/projects.py +++ b/python/ruff-ecosystem/ruff_ecosystem/projects.py @@ -206,6 +206,8 @@ class CheckOptions(CommandOptions): "check", "--no-cache", "--exit-zero", + "--output-format", + "concise", f"--{'' if self.preview else 'no-'}preview", ] if self.select: