Metadata-Version: 2.0
Name: cppcheck-junit
Version: 0.1.0
Summary: Converts Cppcheck XML output to JUnit format.
Home-page: https://github.com/johnthagen/cppcheck-junit
Author: John Hagen
Author-email: johnthagen@gmail.com
License: MIT
Keywords: Cppcheck C++ JUnit
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance

cppcheck JUnit Converter
========================

.. image:: https://badge.fury.io/py/cppcheck-junit.png
    :target: http://badge.fury.io/py/cppcheck-junit

Tool that converts ``cppcheck`` output to JUnit XML format.  Use on your CI servers to get more
helpful feedback.

Installation
------------

You can install, upgrade, and uninstall ``cppcheck-junit`` with these commands:

.. code:: shell-session

    $ pip install cppcheck-junit
    $ pip install --upgrade cppcheck-junit
    $ pip uninstall cppcheck-junit

Usage
-----
Enable XML version 2 output, enable all message, and redirect ``cppcheck`` ``stderr`` to a file:

.. code:: shell-session

    $ cppcheck --xml-version=2 --enable=all . 2> cppcheck-result.xml

Convert it to JUnit XML format:

.. code:: shell-session

    $ cppcheck_junit cppcheck-result.xml cppcheck-junit.xml

Releases
--------

0.1.0 - 2015-11-15
^^^^^^^^^^^^^^^^^^

First release.

