├── .coveragerc ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── test-os.yml │ ├── test-results.yml │ └── test-whl.yml ├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── api.rst ├── conf.py ├── index.rst ├── inheritance_diagram.rst └── requirements.txt ├── junitparser ├── __init__.py ├── __main__.py ├── cli.py ├── junitparser.py ├── py.typed └── xunit2.py ├── pyproject.toml └── tests ├── __init__.py ├── data ├── jenkins.xml ├── no_fails.xml ├── no_suites_tag.xml ├── normal.xml ├── pytest_error.xml └── pytest_success.xml ├── test_cli.py ├── test_fromfile.py ├── test_general.py ├── test_write.py └── test_xunit2.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/test-os.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/.github/workflows/test-os.yml -------------------------------------------------------------------------------- /.github/workflows/test-results.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/.github/workflows/test-results.yml -------------------------------------------------------------------------------- /.github/workflows/test-whl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/.github/workflows/test-whl.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include tests/data/*.xml 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/inheritance_diagram.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/docs/inheritance_diagram.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | # Python dependencies to build the documentation 2 | 3 | Sphinx ~= 7.4 4 | -------------------------------------------------------------------------------- /junitparser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/junitparser/__init__.py -------------------------------------------------------------------------------- /junitparser/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/junitparser/__main__.py -------------------------------------------------------------------------------- /junitparser/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/junitparser/cli.py -------------------------------------------------------------------------------- /junitparser/junitparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/junitparser/junitparser.py -------------------------------------------------------------------------------- /junitparser/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /junitparser/xunit2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/junitparser/xunit2.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/jenkins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/tests/data/jenkins.xml -------------------------------------------------------------------------------- /tests/data/no_fails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/tests/data/no_fails.xml -------------------------------------------------------------------------------- /tests/data/no_suites_tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/tests/data/no_suites_tag.xml -------------------------------------------------------------------------------- /tests/data/normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/tests/data/normal.xml -------------------------------------------------------------------------------- /tests/data/pytest_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/tests/data/pytest_error.xml -------------------------------------------------------------------------------- /tests/data/pytest_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/tests/data/pytest_success.xml -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_fromfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/tests/test_fromfile.py -------------------------------------------------------------------------------- /tests/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/tests/test_general.py -------------------------------------------------------------------------------- /tests/test_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/tests/test_write.py -------------------------------------------------------------------------------- /tests/test_xunit2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiwei/junitparser/HEAD/tests/test_xunit2.py --------------------------------------------------------------------------------