不久前我已经设置codecov
了gitlab
管道,并且能够在codecov
. 自初始设置以来,报告在几次提交后停止处理,我无法弄清楚我做错了什么来再次处理报告。
在我使用和的gitlab
管道中:tox
pip install codecov
test:
stage: test
script:
- pip install circuitpython-build-tools Sphinx sphinx-rtd-theme tox codecov
- tox
- codecov -t $CODECOV_TOKEN
artifacts:
paths:
- htmlcov/
在tox
我运行coverage
:
[testenv:coverage]
deps = -rrequirements.txt
-rtest-requirements.txt
commands = coverage run -m unittest discover tests/
coverage html
在codecov
我可以看到上传尝试处理的位置,但没有太多描述就失败了:
There was an error processing coverage reports.
我已经参考了 python 教程,但看不到我做错了什么。