From 537f1657c9aba523a8f0e5d0fe1382a14ba1c5ef Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Thu, 1 Jun 2017 18:42:06 +0200 Subject: [PATCH] add description why images are skipped --- test/runtests.jl | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 73ae5f41..3135e113 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -30,7 +30,12 @@ facts("PyPlot") do @fact pyplot() --> Plots.PyPlotBackend() @fact backend() --> Plots.PyPlotBackend() - image_comparison_facts(:pyplot, skip=[2,31], eps=img_eps) + image_comparison_facts(:pyplot, + skip=[ + 2, # animation (skipped for speed) + 31, # animation (skipped for speed) + ], + eps=img_eps) end facts("PlotlyJS") do @@ -40,10 +45,10 @@ facts("PlotlyJS") do if is_linux() image_comparison_facts(:plotlyjs, skip=[ - 2, # animation + 2, # animation (skipped for speed) 10, # match_dimensions not defined 27, # (polar plots) takes very long / not working - 31, # animation + 31, # animation (skipped for speed) ], eps=img_eps) end