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.
This commit is contained in:
Zanie Blue 2024-01-30 10:44:15 -06:00 committed by Zanie
parent 07c6a3e672
commit 897b7f75b9
1 changed files with 2 additions and 0 deletions

View File

@ -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: