Updated coveralls, now it will run even when cover build fails

This commit is contained in:
Jeppe Klitgaard 2015-04-06 02:29:55 +02:00
parent 9f93c67fb6
commit 8bf7620579
3 changed files with 11 additions and 2 deletions

View File

@ -16,6 +16,6 @@ install:
script:
- tox -e $TOX_ENV
after_success:
- if [ "$TOX_ENV" = "cover" ]; then coveralls; fi
- if [ "$TOX_ENV" = "coveralls" ]; then coveralls; fi
notifications:
email: false

View File

@ -14,6 +14,6 @@ print(" - pip install python-coveralls")
print("script:")
print(" - tox -e $TOX_ENV")
print("after_success:")
print(' - if [ "$TOX_ENV" = "cover" ]; then coveralls; fi')
print(' - if [ "$TOX_ENV" = "coveralls" ]; then coveralls; fi')
print("notifications:")
print(" email: false")

View File

@ -33,6 +33,15 @@ deps =
coverage
nosexcover
[testenv:coveralls]
basepython = {[testenv:cover]basepython}
commands =
{[testenv:cover]commands}
coveralls
deps =
{[testenv:cover]deps}
coveralls
[testenv:flake8]
basepython = python3.4
commands =