Skip to content

Commit

Permalink
Add find_persistent_task_deps to doc build
Browse files Browse the repository at this point in the history
Also adds a cross-ref from `test_persistent_tasks`.
  • Loading branch information
timholy committed Nov 15, 2023
1 parent 8337b40 commit b2336ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,5 @@ Aqua.test_all

```@autodocs
Modules = [Aqua]
Filter = t -> startswith(String(nameof(t)), "test_") && t != Aqua.test_all
Filter = t -> (startswith(String(nameof(t)), "test_") && t != Aqua.test_all) || t == Aqua.find_persistent_tasks_deps
```
1 change: 1 addition & 0 deletions src/persistent_tasks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Test whether loading `package` creates persistent `Task`s
which may block precompilation of dependent packages.
See also [`Aqua.find_persistent_tasks_deps`](@ref).
# Motivation
Expand Down

0 comments on commit b2336ff

Please sign in to comment.