Skip to content

Commit e4f516d

Browse files
authored
Merge pull request #4077 from JuliaReach/schillic/plot_test
Comment out unstable plot test
2 parents fd37e71 + b3b0ea6 commit e4f516d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/Utils/plot.jl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,12 @@ for N in @tN([Float64, Float32, Rational{Int}])
196196
@static if isdefined(@__MODULE__, :MiniQhull) && isdefined(@__MODULE__, :Polyhedra)
197197
n = 3
198198
bi = BallInf(zeros(N, 3), p1)
199-
plot(bi) # TODO the Float32 plot looks wrong (a pyramid)
199+
if N != Float32
200+
plot(bi)
201+
else
202+
# TODO the Float32 plot looks wrong (a pyramid) and randomly crashes in CI runs
203+
@test_broken false
204+
end
200205
end
201206
end
202207

0 commit comments

Comments
 (0)