mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-01 17:32:25 +00:00
89 lines
3.5 KiB
Bash
Executable file
89 lines
3.5 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# **NOTE**
|
|
# This script is being replaced by the ruff-ecosystem package which is no
|
|
# longer focused on black-compatibility but on changes in formatting between
|
|
# ruff versions. ruff-ecosystem does not support instability checks yet.
|
|
#
|
|
# Check black compatibility and check for formatter instabilities and other
|
|
# errors.
|
|
#
|
|
# This script will first clone a diverse set of (mostly) black formatted
|
|
# repositories with fixed revisions to target/progress_projects. Each project
|
|
# gets formatted (without modifying the files on disk) to check how
|
|
# similar our style is to black. It also catches common issues such as
|
|
# unstable formatting, internal formatter errors and printing invalid syntax.
|
|
#
|
|
# The pinned revisions are the latest of this writing, update freely.
|
|
|
|
set -e
|
|
|
|
target=$(git rev-parse --show-toplevel)/target
|
|
dir="$target/progress_projects"
|
|
mkdir -p "$dir"
|
|
|
|
# small util library
|
|
if [ ! -d "$dir/twine/.git" ]; then
|
|
git clone --filter=tree:0 https://github.com/pypa/twine "$dir/twine"
|
|
fi
|
|
git -C "$dir/twine" checkout -q afc37f8b26ed06ccd104f6724f293f657b9b7f15
|
|
|
|
# web framework that implements a lot of magic
|
|
if [ ! -d "$dir/django/.git" ]; then
|
|
git clone --filter=tree:0 https://github.com/django/django "$dir/django"
|
|
fi
|
|
git -C "$dir/django" checkout -q 20b7aac7ca60b0352d926340622e618bcbee54a8
|
|
|
|
# an ML project
|
|
if [ ! -d "$dir/transformers/.git" ]; then
|
|
git clone --filter=tree:0 https://github.com/huggingface/transformers "$dir/transformers"
|
|
fi
|
|
git -C "$dir/transformers" checkout -q 5c081e29930466ecf9a478727039d980131076d9
|
|
|
|
# type annotations
|
|
if [ ! -d "$dir/typeshed/.git" ]; then
|
|
git clone --filter=tree:0 https://github.com/python/typeshed "$dir/typeshed"
|
|
fi
|
|
git -C "$dir/typeshed" checkout -q cb688d2577520d98c09853acc20de099300b4e48
|
|
|
|
# python 3.11, typing and 100% test coverage
|
|
if [ ! -d "$dir/warehouse/.git" ]; then
|
|
git clone --filter=tree:0 https://github.com/pypi/warehouse "$dir/warehouse"
|
|
fi
|
|
git -C "$dir/warehouse" checkout -q c6d9dd32b7c85d3a5f4240c95267874417e5b965
|
|
|
|
# zulip, a django user
|
|
if [ ! -d "$dir/zulip/.git" ]; then
|
|
git clone --filter=tree:0 https://github.com/zulip/zulip "$dir/zulip"
|
|
fi
|
|
git -C "$dir/zulip" checkout -q b605042312c763c9a1e458f0ca6a003799682546
|
|
|
|
# home-assistant, home automation with 1ok files
|
|
if [ ! -d "$dir/home-assistant/.git" ]; then
|
|
git clone --filter=tree:0 https://github.com/home-assistant/core "$dir/home-assistant"
|
|
fi
|
|
git -C "$dir/home-assistant" checkout -q 88296c1998fd1943576e0167ab190d25af175257
|
|
|
|
# poetry, a package manager that uses black preview style
|
|
if [ ! -d "$dir/poetry/.git" ]; then
|
|
git clone --filter=tree:0 https://github.com/python-poetry/poetry "$dir/poetry"
|
|
fi
|
|
git -C "$dir/poetry" checkout -q f310a592ad3ab41bb8d635af6bacaf044a1fefef
|
|
|
|
# cpython itself
|
|
if [ ! -d "$dir/cpython/.git" ]; then
|
|
git clone --filter=tree:0 https://github.com/python/cpython "$dir/cpython"
|
|
fi
|
|
git -C "$dir/cpython" checkout -q b75186f69edcf54615910a5cd707996144163ef7
|
|
|
|
# Uncomment if you want to update the hashes
|
|
#for i in "$dir"/*/; do git -C "$i" switch main && git -C "$i" pull; done
|
|
#for i in "$dir"/*/; do echo "# $(basename "$i") $(git -C "$i" rev-parse HEAD)"; done
|
|
|
|
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 15 --multi-project "$dir" || (
|
|
echo "Ecosystem check failed"
|
|
cat "$target/progress_projects_log.txt"
|
|
exit 1
|
|
)
|
|
cat "$target/progress_projects_stats.txt"
|