diff --git a/.travis.yml b/.travis.yml index 66ae6064..2c56cb62 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,10 +4,11 @@ os: - linux # - osx julia: - - 0.7 -matrix: - allow_failures: - - julia: nightly +# - 0.7 + - nightly +#matrix: +# allow_failures: +# - julia: nightly # # before install: # # - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi @@ -40,11 +41,11 @@ before_install: notifications: - email: true + email: false # uncomment the following lines to override the default test script script: - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - - julia -e 'Pkg.clone(pwd()); Pkg.build("Plots")' + - julia -e 'import Pkg; Pkg.develop(pwd()); Pkg.build("Plots")' - julia test/travis_commands.jl # - julia -e 'Pkg.clone("ImageMagick"); Pkg.build("ImageMagick")' # - julia -e 'Pkg.clone("GR"); Pkg.build("GR")' diff --git a/test/REQUIRE b/test/REQUIRE index 09681156..5c009534 100644 --- a/test/REQUIRE +++ b/test/REQUIRE @@ -1,7 +1,7 @@ StatPlots Images ImageMagick -@osx QuartzImageIO +# @osx QuartzImageIO GR 0.31.0 RDatasets VisualRegressionTests diff --git a/test/travis_commands.jl b/test/travis_commands.jl index 3b4fa1b5..97aeea2e 100644 --- a/test/travis_commands.jl +++ b/test/travis_commands.jl @@ -1,16 +1,16 @@ +import Pkg Pkg.add("ImageMagick") Pkg.build("ImageMagick") # Pkg.clone("GR") # Pkg.build("GR") -Pkg.clone("https://github.com/JuliaPlots/PlotReferenceImages.jl.git") - # Pkg.clone("https://github.com/JuliaStats/KernelDensity.jl.git") Pkg.clone("StatPlots") -Pkg.checkout("PlotUtils","julia0.7") -Pkg.checkout("RecipesBase","julia0.7") + +Pkg.develop("PlotUtils") +Pkg.develop("RecipesBase") # Pkg.clone("Blink") # Pkg.build("Blink")