mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-01 01:12:20 +00:00
8 lines
199 B
Bash
Executable file
8 lines
199 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
###
|
|
# Benchmark Ruff on the CPython codebase.
|
|
###
|
|
|
|
cargo build --release && hyperfine --ignore-failure --warmup 10 \
|
|
"./target/release/ruff ./resources/test/cpython/ --no-cache"
|