From b39a7c686b7a3eac74c0e46cf8eff314b22771ed Mon Sep 17 00:00:00 2001 From: Olli Vainola Date: Sat, 6 Jun 2015 17:54:51 +0300 Subject: [PATCH] testing travis without after_success --- .travis.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 42d2799..e27677f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,13 @@ language: julia os: - linux - - osx julia: - release - nightly notifications: email: false -# uncomment the following lines to override the default test script script: - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - - julia --check-bounds=yes -e 'Pkg.init(); Pkg.clone(pwd()); Pkg.build("JuliaFEM"); Pkg.test("JuliaFEM"; coverage=true)' -after_success: + - julia --check_bounds=yes -e 'Pkg.init(); Pkg.clone(pwd()); Pkg.build("JuliaFEM"); Pkg.test("JuliaFEM"; coverage=true)' - julia -e 'cd(Pkg.dir("JuliaFEM")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'