8000 Merge pull request #2 from kennknowles/coveralls · adamncasey/python-jsonpath-rw@1a8e021 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1a8e021

Browse files
committed
Merge pull request kennknowles#2 from kennknowles/coveralls
Coveralls
2 parents 1d44007 + c373326 commit 1a8e021

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

.coveragerc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[run]
2+
branch = True
3+
source = jsonpath_rw

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@
99
/README.txt
1010
/dist
1111
/*.egg-info
12+
13+
.coverage

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,7 @@ python:
77
install:
88
- "pip install . --use-mirrors"
99
- "pip install pytest --use-mirrors"
10-
script: py.test
10+
- "pip install coverage coveralls"
11+
script: coverage run setup.py test
12+
after_success:
13+
- coveralls

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ Python JSONPath RW
33

44
https://github.com/kennknowles/python-jsonpath-rw
55

6-
[![Build Status](https://travis-ci.org/kennknowles/python-jsonpath-rw.png)](https://travis-ci.org/kennknowles/python-jsonpath-rw)
6+
[![Build Status](https://travis-ci.org/kennknowles/python-jsonpath-rw.png?branch=master)](https://travis-ci.org/kennknowles/python-jsonpath-rw)
7+
[![Test coverage](https://coveralls.io/repos/kennknowles/python-jsonpath-rw/badge.png?branch=master)](https://coveralls.io/r/kennknowles/python-jsonpath-rw)
8+
[![PyPi version](https://pypip.in/v/jsonpath-rw/badge.png)](https://pypi.python.org/pypi/jsonpath-rw)
9+
[![PyPi downloads](https://pypip.in/d/jsonpath-rw/badge.png)](https://pypi.python.org/pypi/jsonpath-rw)
710

811
This library provides a robust and significantly extended implementation of JSONPath for Python.
912
It is tested with Python 2.6, 2.7, 3.2, and 3.3.

0 commit comments

Comments
 (0)
0