mirror of
https://github.com/astral-sh/ruff
synced 2026-01-06 14:14:10 -05:00
9 lines
219 B
Bash
Executable File
9 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"
|