Update .travis.yml

This commit is contained in:
Tero Frondelius
2015-05-20 21:18:40 +03:00
parent af2353373e
commit 4c43fb242f
+1 -1
View File
@@ -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())'