Skip to content

Commit

Permalink
remove Weibull test (segfaults)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamed82008 committed Feb 24, 2020
1 parent b7349cb commit 9b8a3be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/distributions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ function filldist_spec(dist::DistSpec; disttype = :uni, n = 2, d = 1)
disttype == :uni && dist.x isa Vector && return
disttype == :multi && dist.x isa Matrix && return
# Broken
(dist.name == :VonMises || dist.name == :TriangularDist) && return
(dist.name in (:VonMises, :TriangularDist)) && return
(dist.name == :Weibull && n isa Tuple) && return
# Tests are failing for matrix covariance vectorized MvNormal
# Note the 2 MvNormal cases in broken_multi_cont_dists
dist.name == :MvNormal && any(x -> isa(x, Matrix), dist.θ) && return
Expand Down

0 comments on commit 9b8a3be

Please sign in to comment.