Record coverage

This commit is contained in:
Alex Gaynor 2013-08-07 13:21:42 -07:00
parent e01032d61a
commit 9d00588f30
3 changed files with 7 additions and 3 deletions

1
.gitignore vendored
View file

@ -3,3 +3,4 @@ __pycache__/
_build/
.tox/
*.egg-info/
.coverage

View file

@ -9,7 +9,10 @@ env:
- TOX_ENV=pep8
install:
- pip install tox
- pip install tox coveralls
script:
- tox -e $TOX_ENV
after_success:
- coveralls

View file

@ -2,8 +2,8 @@
envlist = py26,py27,pypy,py32,py33,docs,pep8
[testenv]
deps = pytest
commands = py.test
deps = pytest-cov
commands = py.test --cov=cryptography/
[testenv:docs]
deps = sphinx