build: Move test files to the tests/ directory

We don’t want these to install by default.
This commit is contained in:
2023-10-30 07:30:26 +01:00
parent 5cd7cba3df
commit 5ad13cea75
8 changed files with 22 additions and 10 deletions

View File

@@ -38,6 +38,19 @@ version_provider = "poetry"
update_changelog_on_bump = true
major_version_zero = true
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true
skip_covered = true
fail_under = 91
omit = ["examples/*"]
[tool.pytest.ini_options]
addopts = "--cov=. --no-cov-on-fail"
ignore = "examples"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"