chore: move coverage config to pyproject (#694)

This PR aims to move the contents of `.coveragerc` to `pyproject.toml`
to make the overall file structure more minimal.
harrison/document-split
Saurav Maheshkar 1 year ago committed by GitHub
parent 4ddfa82bb7
commit b4fcdeb56c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,2 +0,0 @@
[run]
omit = tests/*

@ -85,6 +85,11 @@ ignore_missing_imports = "True"
disallow_untyped_defs = "True"
exclude = ["notebooks"]
[tool.coverage.run]
omit = [
"tests/*",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

Loading…
Cancel
Save