Skip to content

Commit b29bb97

Browse files
committed
remove Weibull test (segfaults)
1 parent 35cea5b commit b29bb97

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/distributions.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ function filldist_spec(dist::DistSpec; disttype = :uni, n = 2, d = 1)
3030
disttype == :uni && dist.x isa Vector && return
3131
disttype == :multi && dist.x isa Matrix && return
3232
# Broken
33-
(dist.name == :VonMises || dist.name == :TriangularDist) && return
33+
(dist.name in (:VonMises, :TriangularDist)) && return
34+
(dist.name == :Weibull && n isa Tuple) && return
3435
# Tests are failing for matrix covariance vectorized MvNormal
3536
# Note the 2 MvNormal cases in broken_multi_cont_dists
3637
dist.name == :MvNormal && any(x -> isa(x, Matrix), dist.θ) && return

0 commit comments

Comments
 (0)