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 658218f commit 77974f2Copy full SHA for 77974f2
.github/workflows/CI.yml
@@ -20,6 +20,7 @@ jobs:
20
test:
21
runs-on: ${{ matrix.runner.os }}
22
strategy:
23
+ fail-fast: false
24
matrix:
25
num_threads:
26
- 1
test/sample.jl
@@ -692,7 +692,7 @@
692
@test mean(x.a for x in view(chain, 2:1_000)) ≈ 0.5 atol = 6e-2
693
@test var(x.a for x in view(chain, 2:1_000)) ≈ 1 / 12 atol = 1e-2
694
@test mean(x.b for x in chain) ≈ 0 atol = 0.11
695
- @test var(x.b for x in chain) ≈ 1 atol = 0.15
+ @test var(x.b for x in chain) ≈ 1 atol = 0.2
696
end
697
698
@testset "Testing callbacks" begin
0 commit comments