这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
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
22 changes: 22 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Nextest configuration for Turborepo
# See https://nexte.st/book/configuration.html

[test-groups]
# turborepo-process tests should run serially to avoid resource contention
# and timing issues, especially on macOS where PTY devices are limited
turborepo-process-serial = { max-threads = 1 }

# Integration tests that spawn turbo binaries should run serially to avoid
# race conditions with binary detection and stdout/stderr capture
turborepo-integration-serial = { max-threads = 1 }

[[profile.default.overrides]]
# Run all tests in the turborepo-process crate serially
filter = 'package(turborepo-process)'
test-group = 'turborepo-process-serial'

[[profile.default.overrides]]
# Run integration tests that use check_json_output! serially
# These tests spawn turbo processes and parse JSON from stdout
filter = 'package(turbo) and (test(boundaries) or test(query) or test(ls))'
test-group = 'turborepo-integration-serial'
Loading