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())'