We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64afdbc commit e1d0157Copy full SHA for e1d0157
.github/workflows/CI.yml
@@ -60,6 +60,10 @@ jobs:
60
os: macos-latest
61
arch: aarch64
62
num_threads: 2
63
+ test_group:
64
+ - DynamicPPL
65
+ - Doctests
66
+ - Downstream
67
68
steps:
69
- uses: actions/checkout@v4
@@ -75,7 +79,7 @@ jobs:
75
79
76
80
- uses: julia-actions/julia-runtest@v1
77
81
env:
78
- GROUP: All
82
+ GROUP: ${{ matrix.test_group }}
83
JULIA_NUM_THREADS: ${{ matrix.runner.num_threads }}
84
85
- uses: julia-actions/julia-processcoverage@v1
test/runtests.jl
@@ -89,7 +89,9 @@ include("test_util.jl")
89
@test_throws ErrorException prob"..."
90
@test_throws ErrorException logprob"..."
91
end
92
+ end
93
94
+ if GROUP == "All" || GROUP == "Doctests"
95
@testset "doctests" begin
96
DocMeta.setdocmeta!(
97
DynamicPPL,
0 commit comments