[run]
source = perfmetrics
omit =
     */bench_*.py

# New in 5.0; required for the GHA coveralls submission.
# Perhaps this obsoletes the source section in [paths]?
# Probably not since we're now installing in non-editable mode.
relative_files = True

[report]
# Coverage is run on Linux, so exclude branches that are windows,
# specific
exclude_lines =
    pragma: no cover
    def __repr__
    raise AssertionError
    raise NotImplementedError
    raise Unsupported
    if __name__ == .__main__.:
    if sys.platform == 'win32':
    if mswindows:
    if is_windows:

[paths]
# Combine source and paths from the CI installs so they all get
# collapsed during combining. Otherwise, coveralls.io reports
# many different files (/lib/pythonX.Y/site-packages/gevent/...) and we don't
# get a good aggregate number.
source =
     src/
     */lib/*/site-packages/
     */pypy*/site-packages/

# Local Variables:
# mode: conf
# End:
