mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-06 17:44:08 +00:00

need run.parallel = True in coveragerc to fix database errors with coverage 5 exclude the resulting .coverage.host.pid files in gitignore
19 lines
317 B
INI
19 lines
317 B
INI
[run]
|
|
parallel = True
|
|
branch = False
|
|
omit =
|
|
jupyterhub/tests/*
|
|
jupyterhub/alembic/*
|
|
|
|
[report]
|
|
exclude_lines =
|
|
if self.debug:
|
|
pragma: no cover
|
|
raise NotImplementedError
|
|
if __name__ == .__main__.:
|
|
ignore_errors = True
|
|
omit =
|
|
jupyterhub/tests/*
|
|
jupyterhub/alembic/*
|
|
*/site-packages/*
|