From bafe8714a809383487167b27d119ce1ce36a2e46 Mon Sep 17 00:00:00 2001 From: Enric Calabuig Date: Mon, 6 Jan 2025 10:21:34 +0100 Subject: [PATCH] Don't fix in ecosystem check (#15267) --- 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 63670a0be2..cf7b732409 100644 --- a/python/ruff-ecosystem/ruff_ecosystem/projects.py +++ b/python/ruff-ecosystem/ruff_ecosystem/projects.py @@ -209,6 +209,8 @@ class CheckOptions(CommandOptions): # Ignore internal test rules "--ignore", "RUF9", + # Never apply fixes, as they pollute the comparison results + "--no-fix", # Use the concise format for comparing violations "--output-format", "concise",