# Code coverage configuration
# See: https://coverage.readthedocs.io/
[run]
source = idaes
omit =
    # skip /opt
    /opt/*
    # skip test directories
    */tests/*
    # skip DMF's CLI
    idaes/dmf/commands.py
    # skip plugins
    *_plugin.py

branch = True

[report]
show_missing = True
