This repository was archived by the owner on Sep 28, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff 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
2222Tool 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+
53580.2.3 - 2015-11-14
5459^^^^^^^^^^^^^^^^^^
5560
Original file line number Diff line number Diff line change 99import sys
1010from xml .etree import ElementTree
1111
12- __version__ = '0.2.3 '
12+ __version__ = '1.0.0 '
1313
1414EXIT_SUCCESS = 0
1515EXIT_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
6767def 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.
Original file line number Diff line number Diff line change 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' ,
You can’t perform that action at this time.
0 commit comments