diff options
author | Donald Stufft <donald@stufft.io> | 2013-08-07 13:48:59 -0700 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2013-08-07 13:48:59 -0700 |
commit | 5cd68bf78eb25b90bf666901a6d83b9eaae5a59f (patch) | |
tree | 32fbacb5235bc9248e95bc3305a21aacd3ac70c1 | |
parent | 542805e48479ba844d3649293ad905e4045d2494 (diff) | |
parent | 9d00588f304326c4dc6ccf6c4f066a78d8bd402c (diff) | |
download | cryptography-5cd68bf78eb25b90bf666901a6d83b9eaae5a59f.tar.gz cryptography-5cd68bf78eb25b90bf666901a6d83b9eaae5a59f.tar.bz2 cryptography-5cd68bf78eb25b90bf666901a6d83b9eaae5a59f.zip |
Merge pull request #15 from alex/coveralls
Record coverage
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | .travis.yml | 5 | ||||
-rw-r--r-- | tox.ini | 4 |
3 files changed, 7 insertions, 3 deletions
@@ -3,3 +3,4 @@ __pycache__/ _build/ .tox/ *.egg-info/ +.coverage diff --git a/.travis.yml b/.travis.yml index fe46c7d3..f7ff6d97 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,10 @@ env: - TOX_ENV=pep8 install: - - pip install tox + - pip install tox coveralls script: - tox -e $TOX_ENV + +after_success: + - coveralls @@ -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 |