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
- osx
julia:
- release
- 1.0
- 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 -e 'Pkg.clone(pwd()); Pkg.build("Property(T)"); Pkg.test("Property(T)"; coverage=true)'
after_success:
email: true
matrix:
fast_finish: true
allow_failures:
- julia: nightly
## 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
- julia -e 'cd(Pkg.dir("Property(T)")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("Property(T)")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
#- julia -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true);'