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

Commit 1df9ed0

Browse files
committed
Release 1.0.0.
1 parent f80d171 commit 1df9ed0

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

README.rst

+6-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cpplint JUnit Converter
1616
.. image:: https://img.shields.io/pypi/pyversions/cpplint-junit.svg
1717
:target: https://pypi.python.org/pypi/cpplint-junit/
1818

19-
.. image:: https://img.shields.io/pypi/dd/cpplint-junit.svg
19+
.. image:: https://img.shields.io/pypi/dm/cpplint-junit.svg
2020
:target: https://pypi.python.org/pypi/cpplint-junit/
2121

2222
Tool that converts ``cpplint`` output to JUnit XML format. Use on your CI servers to get more
@@ -50,6 +50,11 @@ Convert it to JUnit XML format:
5050
Releases
5151
--------
5252

53+
1.0.0 - 2016-02-15
54+
^^^^^^^^^^^^^^^^^^
55+
56+
Release 1.0. Increase test coverage.
57+
5358
0.2.3 - 2015-11-14
5459
^^^^^^^^^^^^^^^^^^
5560

cpplint_junit.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import sys
1010
from xml.etree import ElementTree
1111

12-
__version__ = '0.2.3'
12+
__version__ = '1.0.0'
1313

1414
EXIT_SUCCESS = 0
1515
EXIT_FAILURE = -1
@@ -43,7 +43,7 @@ def parse_cpplint(file_name):
4343
file_name (str): cpplint output file.
4444
4545
Returns:
46-
Dict[str, List[CpplintError]]: Parsed failures grouped by file name.
46+
Dict[str, List[CpplintError]]: Parsed errors grouped by file name.
4747
4848
Raises:
4949
FileNotFoundError: File does not exist.
@@ -65,10 +65,10 @@ def parse_cpplint(file_name):
6565

6666

6767
def generate_test_suite(errors):
68-
"""Writes a JUnit test file from parsed cpplint failures.
68+
"""Creates a JUnit XML tree from parsed cpplint errors.
6969
7070
Args:
71-
errors (Dict[str, List[CpplintError]]): Parsed cpplint failures.
71+
errors (Dict[str, List[CpplintError]]): Parsed cpplint errors.
7272
7373
Returns:
7474
ElementTree.ElementTree: XML test suite.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
zip_safe=False,
2121

2222
classifiers=[
23-
'Development Status :: 3 - Alpha',
23+
'Development Status :: 4 - Beta',
2424
'Environment :: Console',
2525
'Intended Audience :: Developers',
2626
'License :: OSI Approved :: MIT License',

0 commit comments

Comments
 (0)