Note: This project has been archived in favor of the advanced PyPI hosted version of cpplint. It will no longer be maintained.
Tool that converts cpplint
output to JUnit XML format. Use on your CI servers to get more
helpful feedback.
Note: The advanced PyPI hosted version of cpplint supports JUnit output format natively and is preferred to this package.
You can install, upgrade, and uninstall cpplint-junit
with these commands:
$ pip install cpplint-junit
$ pip install --upgrade cpplint-junit
$ pip uninstall cpplint-junit
Redirect cpplint
stderr
to a file:
$ cpplint main.cpp 2> cpplint.txt
Convert it to JUnit XML format:
$ cpplint_junit cpplint.txt cpplint_junit.xml
- Fix trove classifiers.
- Drop Python 2.7.
- Drop Python 3.4 and support Python 3.8.
- Include license file.
Fix missing requirements.txt
from source distribution that caused package to not install.
Drop Python 3.3 and support Python 3.7.
Support Python 3.6.
Fix Python 2.7 compatibility by catching more general IOError on file not found.
Release 1.0. Increase test coverage.
Use "error" consistently rather than "failure" to refer to results from cpplint
.
Mis-release.
Added console entry point.
First release.