Skip to content
Snippets Groups Projects
Commit d4366a78 authored by Donald Stufft's avatar Donald Stufft
Browse files

Merge pull request #38 from dstufft/coveralls

Use coveralls.io to report test coverage
parents 0e38aaee 4568bccc
No related branches found
No related tags found
No related merge requests found
...@@ -20,6 +20,9 @@ install: ...@@ -20,6 +20,9 @@ install:
script: script:
- tox - tox
after_success:
- coveralls
notifications: notifications:
irc: irc:
channels: channels:
......
...@@ -4,6 +4,9 @@ PyNaCl ...@@ -4,6 +4,9 @@ PyNaCl
.. image:: https://travis-ci.org/pyca/pynacl.png?branch=master .. image:: https://travis-ci.org/pyca/pynacl.png?branch=master
:target: https://travis-ci.org/pyca/pynacl :target: https://travis-ci.org/pyca/pynacl
.. image:: https://coveralls.io/repos/pyca/pynacl/badge.png?branch=master
:target: https://coveralls.io/r/pyca/pynacl?branch=master
PyNaCl is a Python binding to the `Networking and Cryptography library`_, PyNaCl is a Python binding to the `Networking and Cryptography library`_,
a crypto library with the stated goal of improving usability, security and a crypto library with the stated goal of improving usability, security and
speed. speed.
......
...@@ -3,5 +3,8 @@ envlist = py26,py27,pypy,py33 ...@@ -3,5 +3,8 @@ envlist = py26,py27,pypy,py33
[testenv] [testenv]
deps = deps =
coverage
pytest pytest
commands = py.test commands =
coverage run --source nacl --branch -m pytest
coverage report -m
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment