nextest-runner 0.124.0

Core runner logic for cargo nextest.
Documentation
# This is the default user config used by nextest. It is embedded in the binary
# at build time. It may be used as a template for ~/.config/nextest/config.toml.
#
# For documentation on these settings, see:
# https://nexte.st/docs/user-config/reference

[ui]
# Style of progress display shown during test runs.
# Valid values: "auto", "none", "bar", "counter", "only"
show-progress = "auto"

# Maximum number of running tests to list in the progress bar. Excess running
# tests are collapsed into a summary line.
# Valid values: a non-negative integer, or "infinite" for no limit.
max-progress-running = 8

# Enables the interactive keyboard input handler (e.g. `t` to dump test status,
# `Enter` to print a summary line).
input-handler = true

# Indents captured test output for visual clarity.
output-indent = true

# Pager command for output that benefits from scrolling.
#
# Accepts a command string ("less -FRX"), an array (["less", "-FRX"]),
# a table ({ command = ["less", "-FRX"], env = { LESSCHARSET = "utf-8" } }),
# or ":builtin" to use the builtin pager.
pager = { command = ["less", "-FRX"], env = { LESSCHARSET = "utf-8" } }

# When to send output through the pager.
# Valid values: "auto", "never"
paginate = "auto"

# Settings for the builtin pager (active when pager = ":builtin").
[ui.streampager]
# How the builtin pager uses the alternate screen and when it exits.
# Valid values: "quit-if-one-page", "full-screen-clear-output", "quit-quickly-or-clear-output"
interface = "quit-if-one-page"
# How the builtin pager wraps long lines.
# Valid values: "none", "word", "anywhere"
wrapping = "word"
# Whether to show a ruler at the bottom of the builtin pager.
show-ruler = true

# Retention settings for the record-replay-rerun feature.
[record]
# Whether to record test runs. Has no effect unless [experimental] record = true.
enabled = false
# Maximum number of recorded runs to retain before eviction.
max-records = 100
# Maximum combined size of all retained recordings before eviction.
max-total-size = "1GB"
# Maximum age of a recorded run before eviction.
max-age = "30d"
# Maximum size of a single captured stdout or stderr stream before truncation.
max-output-size = "10MB"

# Windows uses the builtin pager by default because external pagers are
# unreliable on Windows.
[[overrides]]
platform = "cfg(windows)"
ui.pager = ":builtin"