Metadata-Version: 2.1
Name: junit-xml-output
Version: 2.0.0
Summary: Create junit test xml output from python
Home-page: https://bitbucket.org/db_atlass/python-junit-xml-output-module
Author: David Black
Author-email: dblack@atlassian.com
License: MIT
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
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.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8

*Create junit test xml output from python!*

Example Usage
~~~~~~~~~~~~~

.. code:: python

    import junit_xml_output
    test_cases = []
    test_cases.append(junit_xml_output.TestCase("first", "eg_contents",
        "failure"))
    junit_xml = junit_xml_output.JunitXml("example_usage", test_cases)
    print (junit_xml.dump())



