added packages in test/travis_commands.jl

This commit is contained in:
Daniel Schwabeneder 2017-05-31 20:03:52 +02:00
parent 5b3ce8ab73
commit 3c6d8e1ec9
2 changed files with 15 additions and 23 deletions

View File

@ -19,24 +19,13 @@ img_eps = isinteractive() ? 1e-2 : 10e-2
# image_comparison_facts(:gadfly, skip=[4,6,23,24,27], eps=img_eps) # image_comparison_facts(:gadfly, skip=[4,6,23,24,27], eps=img_eps)
# end # 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 facts("GR") do
@fact gr() --> Plots.GRBackend() @fact gr() --> Plots.GRBackend()
@fact backend() --> Plots.GRBackend() @fact backend() --> Plots.GRBackend()
image_comparison_facts(:gr, if is_linux() # && isinteractive()
# skip=[ image_comparison_facts(:gr, eps=img_eps)
# 13, # :rtriangle not found end
# ],
eps=img_eps)
end end
facts("PyPlot") do facts("PyPlot") do

View File

@ -1,8 +1,8 @@
# Pkg.clone("ImageMagick") Pkg.clone("ImageMagick")
# Pkg.build("ImageMagick") Pkg.build("ImageMagick")
# Pkg.clone("GR") Pkg.clone("GR")
# Pkg.build("GR") Pkg.build("GR")
Pkg.clone("https://github.com/JuliaPlots/PlotReferenceImages.jl.git") 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.clone("StatPlots")
Pkg.checkout("PlotUtils") Pkg.checkout("PlotUtils")
# Pkg.clone("https://github.com/JunoLab/Blink.jl.git") Pkg.clone("Blink")
# Pkg.build("Blink") Pkg.build("Blink")
# import Blink using Blink
# Blink.AtomShell.install() Blink.AtomShell.install()
# Pkg.clone("https://github.com/spencerlyon2/PlotlyJS.jl.git") Pkg.add("Rsvg")
Pkg.clone("PlotlyJS")
# Pkg.checkout("RecipesBase") # Pkg.checkout("RecipesBase")
# Pkg.clone("VisualRegressionTests") # Pkg.clone("VisualRegressionTests")
@ -25,4 +26,6 @@ ENV["PYTHON"] = ""
Pkg.add("PyPlot") Pkg.add("PyPlot")
Pkg.build("PyPlot") Pkg.build("PyPlot")
Pkg.add("InspectDR")
Pkg.test("Plots"; coverage=false) Pkg.test("Plots"; coverage=false)