Do not use codacy for coverage
This commit is contained in:
parent
0c5631ae40
commit
09e9b20c5b
2
Makefile
2
Makefile
@ -62,7 +62,7 @@ run_server: test_project
|
|||||||
|
|
||||||
run_tests: test_venv
|
run_tests: test_venv
|
||||||
python setup.py check --restructuredtext --stric
|
python setup.py check --restructuredtext --stric
|
||||||
test_venv/bin/py.test -rw -x --cov=cas_server --cov-report html
|
test_venv/bin/py.test -rw -x --cov=cas_server --cov-report html --cov-report term
|
||||||
rm htmlcov/coverage_html.js # I am really pissed off by those keybord shortcuts
|
rm htmlcov/coverage_html.js # I am really pissed off by those keybord shortcuts
|
||||||
|
|
||||||
test_venv/bin/sphinx-build: test_venv
|
test_venv/bin/sphinx-build: test_venv
|
||||||
|
@ -638,8 +638,8 @@ You could for example do as bellow::
|
|||||||
.. |codacy| image:: https://badges.genua.fr/codacy/grade/255c21623d6946ef8802fa7995b61366/master.svg
|
.. |codacy| image:: https://badges.genua.fr/codacy/grade/255c21623d6946ef8802fa7995b61366/master.svg
|
||||||
:target: https://www.codacy.com/app/valentin-samir/django-cas-server
|
:target: https://www.codacy.com/app/valentin-samir/django-cas-server
|
||||||
|
|
||||||
.. |coverage| image:: https://badges.genua.fr/codacy/coverage/255c21623d6946ef8802fa7995b61366/master.svg
|
.. |coverage| image:: https://badges.genua.fr/local/coverage/?project=django-cas-server&branch=master
|
||||||
:target: https://www.codacy.com/app/valentin-samir/django-cas-server
|
:target: https://badges.genua.fr/local/coverage/django-cas-server/master
|
||||||
|
|
||||||
.. |doc| image:: https://badges.genua.fr/local/readthedocs/?version=latest
|
.. |doc| image:: https://badges.genua.fr/local/readthedocs/?version=latest
|
||||||
:target: http://django-cas-server.readthedocs.io
|
:target: http://django-cas-server.readthedocs.io
|
||||||
|
8
tox.ini
8
tox.ini
@ -128,14 +128,14 @@ whitelist_externals={[post_cmd]whitelist_externals}
|
|||||||
|
|
||||||
[testenv:coverage]
|
[testenv:coverage]
|
||||||
basepython=python
|
basepython=python
|
||||||
passenv=CODACY_PROJECT_TOKEN
|
passenv=COVERAGE_TOKEN
|
||||||
deps=
|
deps=
|
||||||
-r{toxinidir}/requirements.txt
|
-r{toxinidir}/requirements.txt
|
||||||
-r{toxinidir}/requirements-dev.txt
|
-r{toxinidir}/requirements-dev.txt
|
||||||
codacy-coverage
|
|
||||||
skip_install=True
|
skip_install=True
|
||||||
commands=
|
commands=
|
||||||
py.test --cov=cas_server --cov-report xml --cov-report term
|
py.test --cov=cas_server --cov-report term --cov-report html
|
||||||
python-codacy-coverage -r {toxinidir}/coverage.xml
|
bash -c 'cd {toxinidir}/htmlcov/; tar czf {toxinidir}/coverage.tar.gz ./'
|
||||||
|
bash -c 'curl -F "secret=$COVERAGE_TOKEN" -F "tar=@{toxinidir}/coverage.tar.gz" -F "project=django-cas-server" -F "branch=$(git rev-parse --abbrev-ref HEAD)" https://badges.genua.fr/local/coverage/; rm {toxinidir}/coverage.tar.gz'
|
||||||
{[post_cmd]commands}
|
{[post_cmd]commands}
|
||||||
whitelist_externals={[post_cmd]whitelist_externals}
|
whitelist_externals={[post_cmd]whitelist_externals}
|
||||||
|
Loading…
Reference in New Issue
Block a user