mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-02 18:02:23 +00:00

This PR introduces a new `crates` directory and moves all "product" crates into that folder. Part of #2059.
8 lines
211 B
Bash
Executable file
8 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"
|