Skip to content
This repository was archived by the owner on Sep 28, 2020. It is now read-only.

Commit 1bdff78

Browse files
committed
Add coveralls.
1 parent 92bb75b commit 1bdff78

File tree

2 files changed

+21
-10
lines changed

2 files changed

+21
-10
lines changed

.travis.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
language: python
22
python:
3-
- "3.5"
4-
- "3.4"
5-
- "3.3"
6-
- "2.7"
7-
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
8-
# install: "sudo apt-get install"
9-
# command to run tests, e.g. python setup.py test
10-
script: python test.py
3+
- 3.5
4+
- 3.4
5+
- 3.3
6+
- 2.7
7+
install:
8+
- pip install coveralls
9+
script:
10+
coverage run python test.py
11+
after_success:
12+
coveralls

README.rst

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
cpplint JUnit Converter
22
=======================
33

4-
.. image:: https://badge.fury.io/py/cpplint-junit.png
5-
:target: http://badge.fury.io/py/cpplint-junit
4+
.. image:: https://coveralls.io/repos/github/johnthagen/ccpplint-junit/badge.svg
5+
:target: https://coveralls.io/github/johnthagen/cpplint-junit
66

77
.. image:: https://travis-ci.org/johnthagen/cpplint-junit.svg
88
:target: https://travis-ci.org/johnthagen/cpplint-junit
99

10+
.. image:: https://img.shields.io/pypi/v/cpplint-junit.svg
11+
:target: https://pypi.python.org/pypi/cpplint-junit
12+
13+
.. image:: https://img.shields.io/pypi/pyversions/cpplint-junit.svg
14+
:target: https://pypi.python.org/pypi/cpplint-junit/
15+
16+
.. image:: https://img.shields.io/pypi/dd/cppcheck-junit.svg
17+
:target: https://pypi.python.org/pypi/cpplint-junit/
18+
1019
Tool that converts ``cpplint`` output to JUnit XML format. Use on your CI servers to get more
1120
helpful feedback.
1221

0 commit comments

Comments
 (0)