Merge pull request #1587 from daschw/julia0.7

remove StatPlots from tests
This commit is contained in:
Daniel Schwabeneder 2018-07-02 00:28:22 +02:00 committed by GitHub
commit 9cf3036ab5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
using VisualRegressionTests using VisualRegressionTests
# using ExamplePlots # using ExamplePlots
import DataFrames, RDatasets # import DataFrames, RDatasets
# don't let pyplot use a gui... it'll crash # don't let pyplot use a gui... it'll crash
# note: Agg will set gui -> :none in PyPlot # note: Agg will set gui -> :none in PyPlot
@ -14,7 +14,7 @@ import DataFrames, RDatasets
using Plots using Plots
using StatPlots # using StatPlots
using Test using Test
default(size=(500,300)) default(size=(500,300))

View File

@ -13,7 +13,7 @@ img_eps = isinteractive() ? 1e-2 : 10e-2
@test gr() == Plots.GRBackend() @test gr() == Plots.GRBackend()
@test backend() == Plots.GRBackend() @test backend() == Plots.GRBackend()
image_comparison_facts(:gr, eps=img_eps) image_comparison_facts(:gr, eps=img_eps, skip = [25, 30])
end end

View File

@ -6,11 +6,11 @@ Pkg.build("ImageMagick")
# Pkg.clone("GR") # Pkg.clone("GR")
# Pkg.build("GR") # Pkg.build("GR")
Pkg.add("https://github.com/JuliaPlots/PlotReferenceImages.jl.git") Pkg.checkout("https://github.com/JuliaPlots/PlotReferenceImages.jl.git")
# Pkg.clone("https://github.com/JuliaStats/KernelDensity.jl.git") # Pkg.clone("https://github.com/JuliaStats/KernelDensity.jl.git")
Pkg.add("StatPlots") # Pkg.add("StatPlots")
Pkg.checkout("PlotUtils") Pkg.checkout("PlotUtils")
Pkg.checkout("RecipesBase") Pkg.checkout("RecipesBase")