diff --git a/test/runtests.jl b/test/runtests.jl index 476fcd12..c44ea244 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -19,24 +19,13 @@ img_eps = isinteractive() ? 1e-2 : 10e-2 # image_comparison_facts(:gadfly, skip=[4,6,23,24,27], eps=img_eps) # end -# facts("GR") do -# @fact gr() --> Plots.GRBackend() -# @fact backend() --> Plots.GRBackend() -# -# if is_linux() && isinteractive() -# image_comparison_facts(:gr, eps=img_eps) -# end -# end - facts("GR") do @fact gr() --> Plots.GRBackend() @fact backend() --> Plots.GRBackend() - image_comparison_facts(:gr, - # skip=[ - # 13, # :rtriangle not found - # ], - eps=img_eps) + if is_linux() # && isinteractive() + image_comparison_facts(:gr, eps=img_eps) + end end facts("PyPlot") do diff --git a/test/travis_commands.jl b/test/travis_commands.jl index d0ff84bd..e9e9deed 100644 --- a/test/travis_commands.jl +++ b/test/travis_commands.jl @@ -1,8 +1,8 @@ -# Pkg.clone("ImageMagick") -# Pkg.build("ImageMagick") +Pkg.clone("ImageMagick") +Pkg.build("ImageMagick") -# Pkg.clone("GR") -# Pkg.build("GR") +Pkg.clone("GR") +Pkg.build("GR") Pkg.clone("https://github.com/JuliaPlots/PlotReferenceImages.jl.git") @@ -11,11 +11,12 @@ Pkg.clone("https://github.com/JuliaPlots/PlotReferenceImages.jl.git") Pkg.clone("StatPlots") Pkg.checkout("PlotUtils") -# Pkg.clone("https://github.com/JunoLab/Blink.jl.git") -# Pkg.build("Blink") -# import Blink -# Blink.AtomShell.install() -# Pkg.clone("https://github.com/spencerlyon2/PlotlyJS.jl.git") +Pkg.clone("Blink") +Pkg.build("Blink") +using Blink +Blink.AtomShell.install() +Pkg.add("Rsvg") +Pkg.clone("PlotlyJS") # Pkg.checkout("RecipesBase") # Pkg.clone("VisualRegressionTests") @@ -25,4 +26,6 @@ ENV["PYTHON"] = "" Pkg.add("PyPlot") Pkg.build("PyPlot") +Pkg.add("InspectDR") + Pkg.test("Plots"; coverage=false)