# Config file for Python "coverage" package.
#
# For documentation, see:
# https://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 the line numbers of the lines without coverage are shown
# in the text form of the report. This variable does not change the information
# in the html form of the report.
show_missing = False

[html]

# Location for html report. Must be in sync with the corresponding variable in
# the makefile.
directory = coverage_html
