my current .travis.yml:
language: julia
os:
- linux
# - osx
julia:
- 1.3
- nightly
notifications:
email: false
jobs:
allow_failures:
- julia: nightly
include:
- stage: "Documentation"
julia: 1.3
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
name: "HTML"
after_success: skip
after_success:
- julia -e 'using Pkg; import LightGraphs; cd(joinpath(dirname(pathof(LightGraphs)), "..")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
- I’d like to pass
--depwarn=no
to travis for a while. What’s the best way to do that? - I read that
codecov: true
will automatically submit coverage. Does that mean I can set that and get rid of thePkg.add("Coverage")
line inafter_success
?