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

Hi All,

I have travis CI set up with my Julia package, 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, and here’s a link to the console output 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

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.

2 Likes

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 :man_facepalming:. I appreciate the help!