fix travis

This commit is contained in:
kalmarek 2019-02-18 19:57:00 +01:00
parent 355382c871
commit 88e55dab18
No known key found for this signature in database
GPG Key ID: 8BF1A3855328FC15
1 changed files with 20 additions and 10 deletions

View File

@ -4,16 +4,26 @@ os:
- linux - linux
- osx - osx
julia: julia:
- release - 1.0
- nightly - nightly
notifications: notifications:
email: false email: true
# uncomment the following lines to override the default test script matrix:
#script: fast_finish: true
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi allow_failures:
# - julia -e 'Pkg.clone(pwd()); Pkg.build("Property(T)"); Pkg.test("Property(T)"; coverage=true)' - julia: nightly
after_success:
## uncomment the following lines to override the default test
script:
- julia -e 'using Pkg;
Pkg.add(PackageSpec(url="https://github.com/kalmarek/Groups.jl", rev="enh/julia-v0.7"));
Pkg.add(PackageSpec(url="https://github.com/kalmarek/GroupRings.jl", rev="enh/julia-v0.7"));
Pkg.clone(pwd());
Pkg.build("PropertyT");
Pkg.test("PropertyT"; coverage=true)'
codecov: true
# after_success:
# push coverage results to Coveralls # push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("Property(T)")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())' #- julia -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true);'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("Property(T)")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'