From 0eb9dd0407a4a5c3dca4439e01890f85c20f8f13 Mon Sep 17 00:00:00 2001 From: schillic Date: Wed, 1 Aug 2018 00:13:02 +0200 Subject: [PATCH] split travis command into two commands again --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 06dfc5af43..80e9448310 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,8 @@ matrix: # - julia -e 'Pkg.clone(pwd()); Pkg.build("LazySets"); Pkg.test("LazySets"; coverage=true)' after_success: # documentation (restrict Documenter to release version 0.18.0 due to problems, see #402) - - julia -e 'Pkg.add("Documenter"); Pkd.pin("Documenter", v"0.18.0"); cd(Pkg.dir("LazySets")); include(joinpath("docs", "make.jl"))' + - julia -e 'Pkg.add("Documenter"); Pkg.pin("Documenter", v"0.18.0")' + - julia -e 'cd(Pkg.dir("LazySets")); include(joinpath("docs", "make.jl"))' # code coverage (for both Coveralls and Codecov) - julia -e 'Pkg.add("Coverage")' # push coverage results to Coveralls