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

Use coveralls.io to report test coverage

parent 55255e62
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,9 @@ install:
script:
- tox
after_success:
- coveralls
notifications:
irc:
channels:
......
......@@ -4,6 +4,9 @@ PyNaCl
.. image:: https://travis-ci.org/pyca/pynacl.png?branch=master
: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`_,
a crypto library with the stated goal of improving usability, security and
speed.
......
......@@ -3,5 +3,8 @@ envlist = py26,py27,pypy,py33
[testenv]
deps =
coverage
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