You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkgs/test/doc/configuration.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,7 @@ tags:
26
26
27
27
* [Test Configuration](#test-configuration)
28
28
* [`timeout`](#timeout)
29
+
* [`suite_load_timeout`](#suite_load_timeout)
29
30
* [`ignore-timeouts`](#ignore-timeouts)
30
31
* [`verbose_trace`](#verbose_trace)
31
32
* [`chain_stack_traces`](#chain_stack_traces)
@@ -97,9 +98,27 @@ formats:
97
98
timeout: 1m
98
99
```
99
100
101
+
### `suite_load_timeout`
102
+
103
+
This field indicates how much time the test runner should allow for compiling
104
+
and loading a test suite before it considers that suite to have failed. It has
105
+
two possible formats:
106
+
107
+
* The string "none" indicates that loading suites should never time out.
108
+
109
+
* A number followed by a unit abbreviation indicates an exact time. For example,
110
+
"1m"means a timeout of one minute, and "30s" means a timeout of thirty
111
+
seconds. Multiple numbers can be combined, as in "1m 30s".
112
+
113
+
```yaml
114
+
suite_load_timeout: 1m
115
+
```
116
+
100
117
### `ignore-timeouts`
101
118
102
-
This field disables all timeouts for all tests. This can be useful when debugging, so tests don't time out during debug sessions. It defaults to `false`.
119
+
This field disables all timeouts for all tests. This can be useful when
120
+
debugging, so tests don't time out during debug sessions. It defaults to
0 commit comments