The repeated question, sorry for asking again, I could not resolve it by checking your tutorial and all the examples: I have a simple python package with a tests folder with some unit tests I am just using the python unittests utility and nothing else no pytest no tox nothing else:
this is my .codecov.yml:
coverage:
status:
patch: false
project:
default:
threshold: 50%
comment:
layout: "header"
require_changes: false
branches: null
behavior: default
flags: null
paths: null
ignore:
- "kim_property/_version.py"
this is my .travis.yml:
install:
- pip install .
- pip install codecov
script:
- python -m tests
after_success:
- codecov
I am getting this error:
v2.0.15
==> Detecting CI provider
Travis Detected
==> Preparing upload
==> Processing gcov (disable by -X gcov)
Executing gcov (find /home/travis/build/openkim/kim-property -not -path ‘./bower_components/’ -not -path './node_modules/’ -not -path ‘./vendor/**’ -type f -name ‘*.gcno’ -exec gcov -pb {} +)
==> Collecting reports
Error: No coverage report found
Can anyone help me?