pdftract/.config/nextest.toml
jedarden 6000c654ce fix: resolve compilation errors across codebase
- Fixed missing fields in BlockJson, SpanJson, ExtractionOptions initializations
- Added feature gates to ocr_integration tests for conditional compilation
- Fixed McpServerState::new calls to include audit writer argument
- Fixed CCITTFaxDecoder::decode calls to use instance method
- Fixed type casts for ObjRef::new calls
- Fixed serde_json::Value method calls (is_some -> !is_null)
- Fixed ProfileType test feature gates
- Worked around lifetime issues in schema roundtrip tests

These changes fix numerous compilation errors that were blocking the
codebase from building. The main library and tests now compile successfully.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-25 08:38:04 -04:00

42 lines
1.8 KiB
TOML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# nextest configuration for pdftract
#
# Profiles:
# - default: used by bare `cargo nextest run` (the marathon's gate). Kills hung tests.
# - ci: CI test runner with JUnit output, retry on flaky, kills hung tests
# - ci-proptest: Property test profile with higher timeouts and no retries
#
# Usage:
# cargo nextest run # default profile
# cargo nextest run --profile ci
# cargo nextest run --profile ci-proptest --features proptest --proptest
#
# For JUnit output: cargo nextest run --profile ci --message-format junit
#
# IMPORTANT: every profile sets `slow-timeout` WITH `terminate-after`. Bare `slow-timeout`
# only *warns* that a test is slow — it never stops it. `terminate-after = N` KILLS a test
# still running after period × N. This is the safety net that stopped a single hung test
# (a spawned `pdftract mcp` server that never exited) from wedging the runner and stalling
# the marathon loop for hours. Do NOT remove `terminate-after`. See CLAUDE.md "Test hygiene".
[store]
# Nextest test data location (default: target/nextest)
dir = "target"
[profile.default]
# Marathon-safety default. A test still running after 30s × 2 = 60s is KILLED and the run
# fails, instead of freezing the loop. 60s is ample for unit + integration tests here.
slow-timeout = { period = "30s", terminate-after = 2 }
fail-fast = false
[profile.ci]
# CI profile: JUnit output, 1 retry for flaky tests. Killed after 60s × 3 = 180s.
fail-fast = true
retries = 1
slow-timeout = { period = "60s", terminate-after = 3 }
[profile.ci-proptest]
# Property test profile: higher timeout for proptest shrinks, no retries (deterministic).
# Killed after 120s × 3 = 360s — generous, but still bounded so a wedged shrink can't hang CI.
fail-fast = true
retries = 0
slow-timeout = { period = "120s", terminate-after = 3 }