# Config file for Python "coverage" package.
#
# For documentation, see:
# http://coverage.readthedocs.org/en/latest/config.html

[run]

# Controls whether branch coverage is measured, vs. just statement coverage.
# TODO: Once statement coverage gets better, enable branch coverage.
branch = False

# The following files are omitted in the coverage.
omit =
    pywbem/mofparsetab.py
    pywbem/moflextab.py

[report]

# Controls whether lines without coverage are shown in the report.
show_missing = True

# defines location for coverage html output
[html]
directory = coverage_html

