mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
Record coverage
This commit is contained in:
parent
e01032d61a
commit
9d00588f30
3 changed files with 7 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -3,3 +3,4 @@ __pycache__/
|
|||
_build/
|
||||
.tox/
|
||||
*.egg-info/
|
||||
.coverage
|
||||
|
|
|
|||
|
|
@ -9,7 +9,10 @@ env:
|
|||
- TOX_ENV=pep8
|
||||
|
||||
install:
|
||||
- pip install tox
|
||||
- pip install tox coveralls
|
||||
|
||||
script:
|
||||
- tox -e $TOX_ENV
|
||||
|
||||
after_success:
|
||||
- coveralls
|
||||
|
|
|
|||
4
tox.ini
4
tox.ini
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue