Skip to content

Commit cbc5f7b

Browse files
committed
Don't run removed tests in CI
1 parent a99aed2 commit cbc5f7b

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ jobs:
7373

7474
- uses: julia-actions/julia-runtest@v1
7575
env:
76-
GROUP: All
7776
JULIA_NUM_THREADS: ${{ matrix.runner.num_threads }}
7877

7978
- uses: julia-actions/julia-processcoverage@v1

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1616
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
17-
run: julia -e 'using CompatHelper; CompatHelper.main(; subdirs = ["", "docs", "test", "test/turing"])'
17+
run: julia -e 'using CompatHelper; CompatHelper.main(; subdirs = ["", "docs", "test"])'

.github/workflows/JuliaPre.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,3 @@ jobs:
2525
- uses: julia-actions/cache@v2
2626
- uses: julia-actions/julia-buildpkg@v1
2727
- uses: julia-actions/julia-runtest@v1
28-
env:
29-
GROUP: DynamicPPL

test/runtests.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,7 @@ include("test_util.jl")
8080

8181
@testset "doctests" begin
8282
DocMeta.setdocmeta!(
83-
DynamicPPL,
84-
:DocTestSetup,
85-
:(using DynamicPPL, Distributions);
86-
recursive=true,
83+
DynamicPPL, :DocTestSetup, :(using DynamicPPL, Distributions); recursive=true
8784
)
8885
doctestfilters = [
8986
# Older versions will show "0 element Array" instead of "Type[]".

0 commit comments

Comments
 (0)