0

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?

betontalpfa
  • 3,454
  • 1
  • 33
  • 65

1 Answers1

0

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)
betontalpfa
  • 3,454
  • 1
  • 33
  • 65