diff --git a/.travis.yml b/.travis.yml index b0a67d5..70046b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,6 @@ notifications: script: - julia -e 'Pkg.clone(pwd())' - julia -e 'Pkg.build("$name")' - - if [ -f test/runtests.jl ]; then julia --check-bounds=yes -e 'Pkg.test("$name", coverage=true)'; fi + - if [ -f test/runtests.jl ]; then julia --check-bounds=yes --code-coverage test/runtests.jl; fi after_success: - julia -e 'cd(Pkg.dir("JuliaFem")); Pkg.add("Coverage"); using Coverage; >Coveralls.submit(Coveralls.process_folder())'