--- id: gcovr version: "8.6" license: BSD-3-Clause license_treatment: permissive maintenance: active --- # gcovr — Generate C/C++ code coverage reports with gcov License: permissive · Maintenance: active · Downloads: 4.4M/mo ## What it is and what it does Gcovr is a command-line tool that wraps GCC's gcov utility to collect and report code coverage from C and C++ projects. It reads raw coverage data generated by instrumented executables and transforms it into human-readable summaries or structured reports in formats like HTML, JSON, CSV, and various XML dialects (Cobertura, Clover, JaCoCo, LCOV, SonarQube). The tool is inspired by Python's coverage.py and fills a similar role for compiled languages. You use gcovr after compiling your code with GCC's --coverage flag and running your test suite. It can produce compact console summaries, detailed HTML pages with per-file annotations, or machine-readable reports for integration with CI systems and coverage dashboards. The package depends on colorlog for colored output, jinja2 for HTML templating, lxml for XML processing, pygments for syntax highlighting, and tomli for configuration parsing. Use it for: - Generate coverage reports in CI/CD pipelines to track test quality across builds and commits. - Create HTML coverage dashboards showing which lines of C/C++ code are exercised by tests. - Export coverage data to Cobertura or SonarQube format for integration with quality gates. - Produce JSON or CSV summaries of coverage metrics for automated analysis or metrics collection. - Compare coverage across different test runs or branches using LCOV or Coveralls formats. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Gcovr processes GCC code coverage data and generates human-readable or machine-parseable coverage reports in multiple formats including HTML, JSON, CSV, XML (Cobertura, Clover, JaCoCo, LCOV, SonarQube), Markdown, and Coveralls. Yes. Gcovr is a mature, actively maintained tool (production-stable, last commit 2026-08-12) with low install friction, no known vulnerabilities, and a permissive license. Install it if you need to measure or report code coverage for GCC-compiled C/C++ projects, especially in CI/CD contexts where structured output formats are required. ## Install pip install gcovr uv add gcovr poetry add gcovr ## Installing gcovr Before you install: Low install friction: pure Python wheel with five common dependencies (colorlog, jinja2, lxml, pygments, tomli). Active maintenance with last commit 2026-08-12 and 213 days since last release; stable production status. License in practice: BSD-3-Clause permissive license allows commercial and private use with minimal restrictions; suitable for most projects. Quickstart: pip install gcovr # After compiling C/C++ code with --coverage -g -O0 and running tests: gcovr # Generate detailed HTML report: gcovr --html-details coverage.html Requires GCC-compiled code instrumented with --coverage flag; gcov utility must be available on the system. Verify before relying: - Whether gcovr works with Clang or other compilers beyond GCC. - Performance characteristics when processing large codebases or many coverage files. - Integration requirements with CI/CD systems beyond the CLI interface. ## Package facts - License: BSD-3-Clause (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 4.4M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags gcc code coverage reports, gcov coverage analysis, c++ coverage reporting, cobertura xml reports, coverage html generation, code coverage metrics, test coverage analysis, code-coverage, gcc-tooling, ci-cd [View on SkillFed](https://skillfed.io/packages/gcovr) · [View on PyPI](https://pypi.org/project/gcovr/)