From 224ec728acd1bf7fa17e77813c28940ff0a2c7f3 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Mon, 2 Mar 2020 19:23:36 +0800 Subject: [PATCH 1/2] fix travis for documentation build --- .travis.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index e02f470f..2e1dab6b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,9 +9,8 @@ julia: - 1.3 - nightly -matrix: - allow_failures: - - julia: nightly +notifications: + email: false jobs: include: @@ -24,6 +23,5 @@ jobs: - julia --project=docs/ docs/make.jl after_success: skip -## uncomment the following lines to override the default test script -script: - - julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()' + allow_failures: + - julia: nightly From f30267e037c69b682848a117d8c55a4a57b651d2 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Mon, 2 Mar 2020 20:14:43 +0800 Subject: [PATCH 2/2] bring back test on custom Manifest.toml --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 2e1dab6b..90cf039b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,3 +25,7 @@ jobs: allow_failures: - julia: nightly + +## uncomment the following lines to override the default test script +script: + - julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'