.config/nextest.toml
nextest.tomlhistorycomment on this file
| 1 | # Nextest configuration. |
| 2 | # |
| 3 | # Docker-gated tests (each starts its own throwaway container — Postgres |
| 4 | # for the storage/queue suites, the sandbox image for git-effect's Docker |
| 5 | # backend) race and flake when several test binaries hit the Docker daemon |
| 6 | # at once at default parallelism. Serialize exactly those tests through |
| 7 | # one test group; everything else keeps full parallelism. |
| 8 | # |
| 9 | # The `docker` group and its filter are reinstated as the crates that need |
| 10 | # it (refstore-postgres, effect-dispatcher, git-ents-server, git-effect) |
| 11 | # land in their own phases; none exist yet in the post-redo workspace, and |
| 12 | # a filter naming an absent package is a hard nextest config error, not a |
| 13 | # no-op. |
| 14 | |
| 15 | [test-groups] |
| 16 | docker = { max-threads = 1 } |