1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# 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
[]
# Style of progress display shown during test runs.
# Valid values: "auto", "none", "bar", "counter", "only"
= "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.
= 8
# Enables the interactive keyboard input handler (e.g. `t` to dump test status,
# `Enter` to print a summary line).
= true
# Indents captured test output for visual clarity.
= 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.
= { = ["less", "-FRX"], = { = "utf-8" } }
# When to send output through the pager.
# Valid values: "auto", "never"
= "auto"
# Settings for the builtin pager (active when pager = ":builtin").
[]
# 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"
= "quit-if-one-page"
# How the builtin pager wraps long lines.
# Valid values: "none", "word", "anywhere"
= "word"
# Whether to show a ruler at the bottom of the builtin pager.
= true
# Retention settings for the record-replay-rerun feature.
[]
# Whether to record test runs. Has no effect unless [experimental] record = true.
= false
# Maximum number of recorded runs to retain before eviction.
= 100
# Maximum combined size of all retained recordings before eviction.
= "1GB"
# Maximum age of a recorded run before eviction.
= "30d"
# Maximum size of a single captured stdout or stderr stream before truncation.
= "10MB"
# Windows uses the builtin pager by default because external pagers are
# unreliable on Windows.
[[]]
= "cfg(windows)"
= ":builtin"