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
# 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
[]
# How to show progress during test runs.
# Valid values: "auto", "none", "bar", "counter", "only"
= "auto"
# Maximum running tests to display in the progress bar.
# Valid values: an integer, or "infinite" for unlimited.
= 8
# Whether to enable the input handler for keyboard shortcuts during test runs.
= true
# Whether to indent captured test output for visual clarity.
= true
# Pager for supported command output.
#
# 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 paginate output.
# Valid values: "auto", "never"
= "auto"
# Configuration for the builtin streampager (used when pager = ":builtin").
[]
# Interface mode controlling alternate screen behavior.
# Valid values: "quit-if-one-page", "full-screen-clear-output", "quit-quickly-or-clear-output"
= "quit-if-one-page"
# Text wrapping mode.
# Valid values: "none", "word", "anywhere"
= "word"
# Whether to show a ruler at the bottom.
= true
# Windows uses the builtin pager by default because external pagers are
# unreliable on Windows.
[[]]
= "cfg(windows)"
= ":builtin"