Skip to content

Commit

Permalink
update travis yaml to accept failures on older julia versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dysonance committed Aug 15, 2018
1 parent 4f1e173 commit 2e65b1a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ os:
- linux
julia:
- 0.6
- 1.0
- nightly
matrix:
allow_failures:
- julia: 0.6
- julia: nightly
notifications:
email: false
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("Indicators")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'using Pkg; cd(Pkg.dir("Indicators")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("Indicators")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e 'using Pkg; cd(Pkg.dir("Indicators")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

0 comments on commit 2e65b1a

Please sign in to comment.