From 5d675079cb703ad8d85855a262563c93f83c637c Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Wed, 28 Feb 2024 17:34:55 +0000 Subject: [PATCH] Fix the ecosystem check We need to bump the number of files we expect to have formatting violations following #10093 --- scripts/formatter_ecosystem_checks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/formatter_ecosystem_checks.sh b/scripts/formatter_ecosystem_checks.sh index 349e82077c2f5..0d3a5f0115812 100755 --- a/scripts/formatter_ecosystem_checks.sh +++ b/scripts/formatter_ecosystem_checks.sh @@ -81,7 +81,7 @@ git -C "$dir/cpython" checkout -q b75186f69edcf54615910a5cd707996144163ef7 time cargo run --bin ruff_dev -- format-dev --stability-check \ --error-file "$target/progress_projects_errors.txt" --log-file "$target/progress_projects_log.txt" --stats-file "$target/progress_projects_stats.txt" \ - --files-with-errors 14 --multi-project "$dir" || ( + --files-with-errors 15 --multi-project "$dir" || ( echo "Ecosystem check failed" cat "$target/progress_projects_log.txt" exit 1