mirror of
https://github.com/astral-sh/ruff
synced 2026-01-09 07:34:06 -05:00
This PR introduces a new `crates` directory and moves all "product" crates into that folder. Part of #2059.
9 lines
211 B
Bash
Executable File
9 lines
211 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 ./crates/ruff/resources/test/cpython/ --no-cache"
|