Tool that converts Doxygen XML output to JUnit XML format. Use on your CI servers to get more helpful feedback.
You can install, upgrade, and uninstall doxygen-junit
with these commands:
$ pip install doxygen-junit
$ pip install --upgrade doxygen-junit
$ pip uninstall doxygen-junit
Redirect doxygen
stderr
to a file:
$ doxygen 2> doxygen-stderr.txt
Convert it to JUnit XML format:
$ doxygen_junit --input doxygen-stderr.txt --output doxygen-junit.xml
Credit to @theandrewdavis for the initial development of the conversion tool.
- Add Python 3.10 support, drop 3.6.
- Add Python 3.9 support.
- Switch to GitHub Actions for CI.
- Drop support for Python 3.5.
- Add
--version
CLI argument.
- Drop Python 2.7.
- Drop Python 3.4 and support Python 3.8.
- Include license file.
Support Python 3.7.
- Properly support JUnit XSD.
- Drop Python 3.3 support.
Support Python 3.6.
Handle warning labels without a space before the preceding colon.
First release.