Search code examples
pythoncontinuous-integrationautomated-teststravis-cicodecov

Commits not uploaded to codecov


I have a python proyect on github named codecovtest.

I have the .travis.yml file, which starts automatic test on travis-ci, on each push on github.

The test passed on travis-ci.

But the coverage report isn't uploaded to codecov.

What have I done wrong?


Solution

  • Replace the codecov command with the codecov.io's bash script int the .travis.yml

    # Push the results back to codecov
    after_success:
    - bash <(curl -s https://codecov.io/bash)