cover2cover icon indicating copy to clipboard operation
cover2cover copied to clipboard

Convert JaCoCo coverage reports to Cobertura coverage reports

Results 8 cover2cover issues
Sort by recently updated
recently updated
newest added

Hi, thanks for this nice conversion script! I found a small error running it under python3: ``` File "cover2cover.py", line 147 print '' ^ SyntaxError: Missing parentheses in call to...

Nice script, but it is not running with Python 3. Just made some small fixes. Closes #8

Just a small update to make it run with Python 3

Hi, Thanks for the script, I just had to add group level present in aggregate reports https://www.eclemma.org/jacoco/trunk/doc/report-aggregate-mojo.html as defined in DTD http://www.eclemma.org/jacoco/trunk/coverage/report.dtd Note : my fork includes captainmalloc work on...

As described in https://github.com/craigatk/projektor/issues/360, I've got a setup that is emitting Cobertura XML and a destination for the data that requires Jacoco XML. cover2cover seems to have contained some of...

it's generating a xml between b' and ' such as this : ```xml b'

Add 1. pretty formatted output 2. calculation for `lines-valid` and `lines-covered` 3. [Black formatting](https://pypi.org/project/black/) Note this assumes Python 3 (since Python 2 should not be used anymore) and incorporates changes...