Skip to content

Commit

Permalink
add coverage reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
warner committed Feb 6, 2015
1 parent ec5876b commit 2e65569
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .coveragerc
@@ -0,0 +1,9 @@
# -*- conf -*-

[run]
include =
ecdsa/*
omit =
ecdsa/six.py
ecdsa/_version.py
ecdsa/test_ecdsa.py
7 changes: 5 additions & 2 deletions .travis.yml
Expand Up @@ -7,7 +7,10 @@ python:
- "3.4"
- "pypy"
- "pypy3"
install: true
install:
- pip install python-coveralls
script:
- python setup.py test
- coverage run setup.py test
- python setup.py speed
after_success:
- coveralls
2 changes: 2 additions & 0 deletions README.md
@@ -1,6 +1,8 @@
# Pure-Python ECDSA

[![build status](https://travis-ci.org/warner/python-ecdsa.png)](http://travis-ci.org/warner/python-ecdsa)
[![Coverage Status](https://coveralls.io/repos/warner/python-ecdsa/badge.svg)](https://coveralls.io/r/warner/python-ecdsa)
[![Latest Version](https://pypip.in/version/ecdsa/badge.svg?style=flat)](https://pypi.python.org/pypi/ecdsa/)


This is an easy-to-use implementation of ECDSA cryptography (Elliptic Curve
Expand Down

0 comments on commit 2e65569

Please sign in to comment.