mirror of
https://github.com/eliasstepanik/voxel-simulation.git
synced 2026-01-11 22:08:29 +00:00
11 lines
256 B
Markdown
11 lines
256 B
Markdown
# Run tests in release mode
|
||
|
||
```bash
|
||
cargo test --release
|
||
```
|
||
|
||
* Compiles with optimizations (`--release`).
|
||
* Executes all test binaries from `target/release/deps`.
|
||
* Use for performance‑sensitive benchmarks.
|
||
* Build takes longer; cache artifacts in CI.
|