Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ParallelTestRunner"
uuid = "d3525ed8-44d0-4b2c-a655-542cee43accc"
authors = ["Valentin Churavy <v.churavy@gmail.com>"]
version = "2.5.1"
version = "2.6.0"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
14 changes: 14 additions & 0 deletions docs/src/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,20 @@ addworkers
default_njobs
```

## Custom Records

Per-test data is captured in an [`AbstractTestRecord`](@ref). The default
[`TestRecord`](@ref) stores timing and memory statistics; subtypes can wrap it
to collect additional data (e.g. GPU metrics) by dispatching [`execute`](@ref)
on the new type and reading the baseline through [`parent`](@ref).

```@docs
AbstractTestRecord
TestRecord
execute
parent(::ParallelTestRunner.AbstractTestRecord)
```

## Internal Types

These are internal types, not subject to semantic versioning contract (could be changed or removed at any point without notice), not intended for consumption by end-users.
Expand Down
Loading
Loading