Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,13 @@ project:
- `make test` executes:

```sh
cargo test --workspace
RUSTFLAGS="-D warnings" cargo nextest run --profile <default|ci> \
--all-targets --all-features -E 'not kind(bench)'
```

running the full workspace test suite. Use `make fmt`
running the full workspace suite under `cargo nextest` with warnings
denied and benchmark targets excluded. The profile defaults to `default`
locally and `ci` under CI (`NEXTEST_PROFILE`). Use `make fmt`
(`cargo fmt --workspace`) to apply formatting fixes reported by the
formatter check.
- Clippy warnings MUST be disallowed.
Expand Down
Loading
Loading