Skip to content

Commit

Permalink
Use Pkg3 API in travis_commands.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Aug 23, 2018
1 parent de85983 commit e034e5b
Showing 1 changed file with 19 additions and 24 deletions.
43 changes: 19 additions & 24 deletions test/travis_commands.jl
Original file line number Diff line number Diff line change
@@ -1,34 +1,29 @@
using Pkg

Pkg.add("ImageMagick")
Pkg.build("ImageMagick")

# Pkg.clone("GR")
# Pkg.build("GR")

Pkg.checkout("https://github.com/JuliaPlots/PlotReferenceImages.jl.git")

# Pkg.clone("https://github.com/JuliaStats/KernelDensity.jl.git")
# need this to use Conda
# ENV["PYTHON"] = ""

# Pkg.add("StatPlots")
Pkg.checkout("PlotUtils")
Pkg.checkout("RecipesBase")
Pkg.add([
PackageSpec("ImageMagick"),
# PackageSpec("GR"),
PackageSpec(url="https://github.com/JuliaPlots/PlotReferenceImages.jl.git"),
PackageSpec("StatPlots"),
# PackageSpec(url="https://github.com/JuliaStats/KernelDensity.jl.git"),
PackageSpec(name="PlotUtils", rev="master"),
PackageSpec(name="RecipesBase", rev="master"),
# PackageSpec(name="Blink", rev="master"),
# PackageSpec(name="Rsvg", rev="master"),
# PackageSpec(name="PlotlyJS", rev="master"),
# PackageSpec(name="VisualRegressionTests", rev="master"),
# PackageSpec("PyPlot"),
# PackageSpec("InspectDR"),
])

# Pkg.clone("Blink")
Pkg.build("ImageMagick")
# Pkg.build("GR")
# Pkg.build("Blink")
# import Blink
# Blink.AtomShell.install()
# Pkg.add("Rsvg")
# Pkg.add("PlotlyJS")

# Pkg.checkout("RecipesBase")
# Pkg.clone("VisualRegressionTests")

# need this to use Conda
# ENV["PYTHON"] = ""
# Pkg.add("PyPlot")
# Pkg.build("PyPlot")

# Pkg.add("InspectDR")

Pkg.test("Plots"; coverage=false)

0 comments on commit e034e5b

Please sign in to comment.