Skip to content

Commit 2e65569

Browse files
committed
add coverage reporting
1 parent ec5876b commit 2e65569

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

.coveragerc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# -*- conf -*-
2+
3+
[run]
4+
include =
5+
ecdsa/*
6+
omit =
7+
ecdsa/six.py
8+
ecdsa/_version.py
9+
ecdsa/test_ecdsa.py

.travis.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ python:
77
- "3.4"
88
- "pypy"
99
- "pypy3"
10-
install: true
10+
install:
11+
- pip install python-coveralls
1112
script:
12-
- python setup.py test
13+
- coverage run setup.py test
1314
- python setup.py speed
15+
after_success:
16+
- coveralls

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Pure-Python ECDSA
22

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

57

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

0 commit comments

Comments
 (0)