From 6f5f82f1e540453b20795541dac0c4a9ee613a66 Mon Sep 17 00:00:00 2001 From: Jeff Bezanson Date: Mon, 10 Jun 2019 16:58:53 -0400 Subject: [PATCH] fix #31774, don't run Pkg tests on travis and AV --- .appveyor.yml | 2 +- .travis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 46db3cc8cd6bd..2e504f175fc0d 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -60,6 +60,6 @@ test_script: - usr\bin\julia -e "Base.require(Main, :InteractiveUtils).versioninfo()" - usr\bin\julia --sysimage-native-code=no -e "true" - cd julia-* && .\bin\julia.exe --check-bounds=yes share\julia\test\runtests.jl all && - .\bin\julia.exe --check-bounds=yes share\julia\test\runtests.jl LibGit2/online Pkg/pkg download + .\bin\julia.exe --check-bounds=yes share\julia\test\runtests.jl LibGit2/online download - cd .. - usr\bin\julia usr\share\julia\test\embedding\embedding-test.jl test\embedding\embedding.exe diff --git a/.travis.yml b/.travis.yml index fc3961a3e02d0..665cebadce6b1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -129,7 +129,7 @@ script: # skip tests if only files within the "doc" dir have changed - if [ $(echo "$FILES_CHANGED" | grep -cv '^doc/') -gt 0 ]; then /tmp/julia/bin/julia --check-bounds=yes runtests.jl $TESTSTORUN && - /tmp/julia/bin/julia --check-bounds=yes runtests.jl LibGit2/online Pkg/pkg download; fi + /tmp/julia/bin/julia --check-bounds=yes runtests.jl LibGit2/online download; fi - popd # test that the embedding code works on our installation - mkdir /tmp/embedding-test &&