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: docs/src/advanced.md
-19Lines changed: 0 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,25 +116,6 @@ The `test_worker` function receives the test name and should return either:
116
116
- A worker object (from [`addworker`](@ref) for tests that need special configuration
117
117
-`nothing` to use the default worker pool
118
118
119
-
## Custom Output Streams
120
-
121
-
You can redirect output to custom I/O streams:
122
-
123
-
```julia
124
-
using ParallelTestRunner
125
-
126
-
io =IOBuffer()
127
-
runtests(MyPackage, ARGS; stdout=io, stderr=io)
128
-
129
-
# Process the output
130
-
output =String(take!(io))
131
-
```
132
-
133
-
This is useful for:
134
-
- Capturing test output for analysis
135
-
- Writing to log files
136
-
- Suppressing output in certain contexts
137
-
138
119
## Custom Arguments
139
120
140
121
If your package needs to accept its own command-line arguments in addition to `ParallelTestRunner`'s options, use [`parse_args`](@ref) with custom flags:
0 commit comments