# -*- mode: conf -*-
[run]
[report]
exclude_lines =
    # These should be impossible to trigger.
    raise ValueError."Invalid value given for 'system' parameter."
    raise ValueError."Instances mathematical base is an unsupported value
    raise ValueError."Can't parse string %s into a bitmath object

    # Don't test the __main__ entry point
    __main__

    # Explicitly label a line as 'do not cover'
    pragma: no cover

    # Review: https://coverage.readthedocs.io/en/stable/config.html#syntax if you need a refresher
    #
    # BTW, the exports happen in the Makefile on lines like (for the 3.x tests):
    #
    # 	. $(NAME)env3/bin/activate && export PYVER=PY3X && nosetests-3.3 -v ....
    pragma: ${PYVER} no cover
