Skip to content

Instantly share code, notes, and snippets.

@TeresaP
TeresaP / merge-xml-coverage.py
Last active March 20, 2020 06:58 — forked from tgsoverly/merge-xml-coverage.py
Merge Cobertura XML's
import logging
import os
import re
import sys
import xml.etree.ElementTree as ET
from optparse import OptionParser
### This file came from the https://github.com/flow123d/flow123d repo they were nice enough to spend time to write this.
### It is copied here for other people to use on its own.