mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-07 21:25:24 +00:00
8 lines
219 B
Bash
Executable file
8 lines
219 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
###
|
|
# Benchmark Ruff on the CPython codebase.
|
|
###
|
|
|
|
cargo build --release && hyperfine --warmup 10 \
|
|
"./target/release/ruff check ./crates/ruff_linter/resources/test/cpython/ --no-cache --exit-zero"
|