From afae957c04611a410180a4fa62fe98645776016d Mon Sep 17 00:00:00 2001 From: Guy Van den Broeck Date: Mon, 21 Feb 2022 21:59:49 -0800 Subject: [PATCH] omit plot rendering tests --- test/Project.toml | 1 - test/io/plot_tests.jl | 9 +++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/Project.toml b/test/Project.toml index 42ac6978..1f909cc7 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -4,4 +4,3 @@ DirectedAcyclicGraphs = "1e6dae5e-d6e2-422d-9af3-452e7a3785ee" Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6" Jive = "ba5e3d4b-8524-549f-bc71-e76ad9e9deed" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" -TikzPictures = "37f6aa50-8035-52d0-81c2-5a1d08754b2d" diff --git a/test/io/plot_tests.jl b/test/io/plot_tests.jl index 84430e8c..70cf6e40 100644 --- a/test/io/plot_tests.jl +++ b/test/io/plot_tests.jl @@ -1,5 +1,5 @@ using Test, ProbabilisticCircuits -using TikzPictures +# using TikzPictures include("../helper/plain_dummy_circuits.jl") @@ -7,18 +7,19 @@ include("../helper/plain_dummy_circuits.jl") mktempdir() do tmp + # Note: omitting rendering tests to speed up CI pc = little_3var() p = @test_nowarn plot(pc) - @test_nowarn save(SVG("$tmp/example1.svg"), p) + # @test_nowarn save(SVG("$tmp/example1.svg"), p) pc = little_3var_categorical() p = @test_nowarn plot(pc) - @test_nowarn save(SVG("$tmp/example2.svg"), p) + # @test_nowarn save(SVG("$tmp/example2.svg"), p) pc = little_hybrid_circuit() p = @test_nowarn plot(pc) - @test_nowarn save(SVG("$tmp/example3.svg"), p) + # @test_nowarn save(SVG("$tmp/example3.svg"), p) end end