Skip to content

Commit 3258c06

Browse files
authored
Merge branch 'main' into 3702_persist_logs_to_disk
2 parents 8943689 + b1e8b76 commit 3258c06

109 files changed

Lines changed: 6900 additions & 1252 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

AGENTS.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@ cargo insta accept # Accept all pending
3636
```bash
3737
cargo make e2e-tests # Build required binaries and run all E2E tests
3838
cargo make e2e-tests-skip-build # Reuse binaries from a previous run
39-
cargo make e2e-tests-skip-build -- <name> # Run a single test (filter passed to nextest)
39+
cargo make e2e-tests-skip-build <name> # Run tests matching a substring filter
40+
cargo make e2e-tests-skip-build -E 'test(request_lifecycle)' --no-capture # Forward nextest flags
4041
```
42+
Everything after the task name is forwarded to `cargo nextest run` unchanged (filters, `-E` expressions, `--no-capture`, `--retries`, `-j`, etc.); no arguments runs the whole suite with the `ci-e2e` profile. Do not put flags after a `--` separator: it is forwarded verbatim, and nextest only accepts filters, not flags, after `--`.
4143
See `crates/e2e-tests/README.md` for details.
4244

4345
## Architecture Overview

CHANGELOG.md

Lines changed: 288 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)