run tests on linux only for plotljs and on all platforms for gr

This commit is contained in:
Daniel Schwabeneder 2017-05-31 20:16:17 +02:00
parent 3c6d8e1ec9
commit 69e88a519c

View File

@ -23,9 +23,7 @@ facts("GR") do
@fact gr() --> Plots.GRBackend() @fact gr() --> Plots.GRBackend()
@fact backend() --> Plots.GRBackend() @fact backend() --> Plots.GRBackend()
if is_linux() # && isinteractive() image_comparison_facts(:gr, eps=img_eps)
image_comparison_facts(:gr, eps=img_eps)
end
end end
facts("PyPlot") do facts("PyPlot") do
@ -39,14 +37,16 @@ facts("PlotlyJS") do
@fact plotlyjs() --> Plots.PlotlyJSBackend() @fact plotlyjs() --> Plots.PlotlyJSBackend()
@fact backend() --> Plots.PlotlyJSBackend() @fact backend() --> Plots.PlotlyJSBackend()
image_comparison_facts(:plotlyjs, if is_linux()
skip=[ image_comparison_facts(:plotlyjs,
2, # animation skip=[
10, # match_dimensions not defined 2, # animation
27, # (polar plots) takes very long / not working 10, # match_dimensions not defined
31, # animation 27, # (polar plots) takes very long / not working
], 31, # animation
eps=img_eps) ],
eps=img_eps)
end
end end
facts("InspectDR") do facts("InspectDR") do