Skip to content

Commit

Permalink
Mention native cobertura implementation in README
Browse files Browse the repository at this point in the history
This PR simply mentions that there is now a native julia solution for generating Cobertura XML files.
  • Loading branch information
disberd authored Jan 5, 2025
1 parent f018ad3 commit a337684
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ Note that the code in this package assumes a reasonably recent `lcov` version wh

`LocalCoverage` also provides an option to generate a
[Cobertura](https://cobertura.github.io/cobertura/) XML, which is used by JVM-related test
suites such as Jenkins. Using this requires the Python module
suites such as Jenkins. This can be done either with:
- The native Julia implementation via the `write_lcov_to_xml` function,
- The original implementation using the `generate_xml` function.

The second option (`generate_xml`) requires the Python module
[`lcov_cobertura`](https://github.com/eriwen/lcov-to-cobertura-xml) (>= v2.0.1).
With Python installed, you can install this module via `pip install lcov_cobertura`.

Expand Down

0 comments on commit a337684

Please sign in to comment.