tox: coveralls: also report to codecov
This is meant to get base coverage on master for codecov.
This commit is contained in:
parent
71b4995775
commit
d3f5324386
4
tox.ini
4
tox.ini
|
@ -163,16 +163,18 @@ commands =
|
||||||
|
|
||||||
|
|
||||||
[testenv:coveralls]
|
[testenv:coveralls]
|
||||||
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH COVERALLS_REPO_TOKEN
|
passenv = CI TRAVIS TRAVIS_* COVERALLS_REPO_TOKEN
|
||||||
usedevelop = True
|
usedevelop = True
|
||||||
changedir = .
|
changedir = .
|
||||||
deps =
|
deps =
|
||||||
{[testenv]deps}
|
{[testenv]deps}
|
||||||
coveralls
|
coveralls
|
||||||
|
codecov
|
||||||
commands =
|
commands =
|
||||||
coverage run --source=_pytest -m pytest testing
|
coverage run --source=_pytest -m pytest testing
|
||||||
coverage report -m
|
coverage report -m
|
||||||
coveralls
|
coveralls
|
||||||
|
codecov
|
||||||
|
|
||||||
[testenv:release]
|
[testenv:release]
|
||||||
decription = do a release, required posarg of the version number
|
decription = do a release, required posarg of the version number
|
||||||
|
|
Loading…
Reference in New Issue