Skip to content

Commit 731044c

Browse files
committed
Remove custom output streams section
1 parent 553c6c6 commit 731044c

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

docs/src/advanced.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -116,25 +116,6 @@ The `test_worker` function receives the test name and should return either:
116116
- A worker object (from [`addworker`](@ref) for tests that need special configuration
117117
- `nothing` to use the default worker pool
118118

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-
138119
## Custom Arguments
139120

140121
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

Comments
 (0)