Skip to content
This repository was archived by the owner on Jan 1, 2026. It is now read-only.

Commit f572bb1

Browse files
committed
Unit test argument parsing.
1 parent 0d66a31 commit f572bb1

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

README.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,13 @@ cppcheck JUnit Converter
1010
.. image:: https://img.shields.io/pypi/v/cppcheck-junit.svg
1111
:target: https://pypi.python.org/pypi/cppcheck-junit
1212

13+
.. image:: https://img.shields.io/pypi/status/cppcheck-junit.svg
14+
:target: https://pypi.python.org/pypi/cppcheck-junit
15+
1316
.. image:: https://img.shields.io/pypi/pyversions/cppcheck-junit.svg
1417
:target: https://pypi.python.org/pypi/cppcheck-junit/
1518

16-
.. image:: https://img.shields.io/pypi/dd/cppcheck-junit.svg
19+
.. image:: https://img.shields.io/pypi/dm/cppcheck-junit.svg
1720
:target: https://pypi.python.org/pypi/cppcheck-junit/
1821

1922
Tool that converts `cppcheck <http://cppcheck.sourceforge.net/>`_ XML output to JUnit XML format.
@@ -47,6 +50,11 @@ Convert it to JUnit XML format:
4750
Releases
4851
--------
4952

53+
1.0.0 - 2016-02-15
54+
^^^^^^^^^^^^^^^^^^
55+
56+
Release 1.0.0. Increase test coverage.
57+
5058
0.2.0 - 2016-01-28
5159
^^^^^^^^^^^^^^^^^^
5260

cppcheck_junit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import sys
99
from xml.etree import ElementTree
1010

11-
__version__ = '0.2.0'
11+
__version__ = '1.0.0'
1212

1313
EXIT_SUCCESS = 0
1414
EXIT_FAILURE = -1

setup.py

Lines changed: 1 addition & 1 deletion
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 :: 5 - Production/Stable',
2424
'Environment :: Console',
2525
'Intended Audience :: Developers',
2626
'License :: OSI Approved :: MIT License',

0 commit comments

Comments
 (0)