# Codecov.submit() warning that coverage files do not exist in Travis CI

**URL:** https://discourse.julialang.org/t/codecov-submit-warning-that-coverage-files-do-not-exist-in-travis-ci/31562
**Category:** General Usage
**Tags:** question, coverage, travis
**Created:** [November 27, 2019, 7:33am UTC](https://discourse.julialang.org/t/codecov-submit-warning-that-coverage-files-do-not-exist-in-travis-ci/31562 "2019-11-27T07:33:01Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![vlandau](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/vlandau/32/8986_2.png) [@vlandau](https://discourse.julialang.org/u/vlandau)
#### Post date: [November 27, 2019, 7:33am UTC](https://discourse.julialang.org/t/codecov-submit-warning-that-coverage-files-do-not-exist-in-travis-ci/31562/1 "2019-11-27T07:33:01Z")

</div>

Hi All,

I have travis CI set up with my Julia [package](https://github.com/Circuitscape/Omniscape.jl), and suddenly coverage files are not being found when trying to submit coverage reports to codecov. As a consequnce, a 0% coverage statistic is being submitted to Codecov. Here’s my [.travis.yml](https://github.com/Circuitscape/Omniscape.jl/blob/master/.travis.yml), and here’s a link to the [console output](https://travis-ci.org/Circuitscape/Omniscape.jl/jobs/617588909?utm_medium=notification&utm_source=github_status) from Travis for the coverage job.

Specifically, I’m getting warnings that coverage files do not exist. I didn’t change anything in my Travis.yml file that would have caused this, so I’m hoping someone might be able to point me in the right direction.

Thanks for any help!

- Vincent

---

<div class="post-metadata">

### Author: ![fredrikekre](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/fredrikekre/32/1688_2.png) [@fredrikekre](https://discourse.julialang.org/u/fredrikekre)
#### Post date: [November 27, 2019, 7:40am UTC](https://discourse.julialang.org/t/codecov-submit-warning-that-coverage-files-do-not-exist-in-travis-ci/31562/2 "2019-11-27T07:40:05Z")

</div>

Data is not preserved between build stages. Typically you would use the `after_sucess` configuration for code coverage, have a look at essentially any Julia package for reference.

---

<div class="post-metadata">

### Author: ![vlandau](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/vlandau/32/8986_2.png) [@vlandau](https://discourse.julialang.org/u/vlandau)
#### Post date: [November 27, 2019, 7:50am UTC](https://discourse.julialang.org/t/codecov-submit-warning-that-coverage-files-do-not-exist-in-travis-ci/31562/3 "2019-11-27T07:50:56Z")

</div>

Ah thanks! I don’t know how I didn’t notice that it actually _has_ been having this issue ever since I changed the yaml a while back 🤦‍♂️. I appreciate the help!
