Metadata-Version: 1.2
Name: doxygen-junit
Version: 2.0.0
Summary: Converts doxygen errors and warnings to JUnit XML format.
Home-page: https://github.com/johnthagen/doxygen-junit
Author: John Hagen
Author-email: johnthagen@gmail.com
License: MIT
Description: doxygen JUnit Converter
        =======================
        
        .. image:: https://travis-ci.org/johnthagen/doxygen-junit.svg
            :target: https://travis-ci.org/johnthagen/doxygen-junit
        
        .. image:: https://codeclimate.com/github/johnthagen/doxygen-junit/badges/issue_count.svg
           :target: https://codeclimate.com/github/johnthagen/doxygen-junit
        
        .. image:: https://codecov.io/github/johnthagen/doxygen-junit/coverage.svg
            :target: https://codecov.io/github/johnthagen/doxygen-junit
        
        .. image:: https://img.shields.io/pypi/v/doxygen-junit.svg
            :target: https://pypi.python.org/pypi/doxygen-junit
        
        .. image:: https://img.shields.io/pypi/status/doxygen-junit.svg
            :target: https://pypi.python.org/pypi/doxygen-junit
        
        .. image:: https://img.shields.io/pypi/pyversions/doxygen-junit.svg
            :target: https://pypi.python.org/pypi/doxygen-junit/
        
        Tool that converts `doxygen <http://www.stack.nl/~dimitri/doxygen/>`_ XML output to JUnit XML
        format. Use on your CI servers to get more helpful feedback.
        
        Installation
        ------------
        
        You can install, upgrade, and uninstall ``doxygen-junit`` with these commands:
        
        .. code:: shell-session
        
            $ pip install doxygen-junit
            $ pip install --upgrade doxygen-junit
            $ pip uninstall doxygen-junit
        
        Usage
        -----
        Redirect ``doxygen`` ``stderr`` to a file:
        
        .. code:: shell-session
        
            $ doxygen 2> doxygen-stderr.txt
        
        Convert it to JUnit XML format:
        
        .. code:: shell-session
        
            $ doxygen_junit --input doxygen-stderr.txt --output doxygen-junit.xml
        
        Contributors
        ------------
        
        Credit to `@theandrewdavis <https://github.com/theandrewdavis>`_ for the initial development of
        the conversion tool.
        
        
        Releases
        --------
        
        2.0.0 2019-12-14
        ^^^^^^^^^^^^^^^^
        
        - Drop Python 2.7.
        
        1.4.0 2019-12-14
        ^^^^^^^^^^^^^^^^
        
        - Drop Python 3.4 and support Python 3.8.
        - Include license file.
        
        1.3.0 - 2018-07-09
        ^^^^^^^^^^^^^^^^^^
        
        Support Python 3.7.
        
        1.2.0 - 2018-04-03
        ^^^^^^^^^^^^^^^^^^
        
        - Properly support JUnit XSD.
        - Drop Python 3.3 support.
        
        1.1.0 - 2016-12-31
        ^^^^^^^^^^^^^^^^^^
        
        Support Python 3.6.
        
        1.0.1 - 2016-10-06
        ^^^^^^^^^^^^^^^^^^
        
        Handle warning labels without a space before the preceding colon.
        
        1.0.0 - 2016-09-13
        ^^^^^^^^^^^^^^^^^^
        
        First release.
        
Keywords: doxygen C C++ JUnit
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: C
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Python: >=3.5
