Verified Commit aada783c authored by Jelle van der Waa's avatar Jelle van der Waa 🚧
Browse files

chore(pyproject.toml): move .coveragerc options to pyproject.toml

parent 90786e7e
Loading
Loading
Loading
Loading
Loading

.coveragerc

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
[run]
disable_warnings = already-imported

[report]
include = aurweb/*
fail_under = 95
exclude_lines =
    if __name__ == .__main__.:
    pragma: no cover
+11 −0
Original line number Diff line number Diff line
[tool.coverage.run]
disable_warnings = ["already-imported"]

[tool.coverage.report]
include = ["aurweb/*"]
fail_under = 95
exclude_lines = [
    "if __name__ == .__main__.:",
    "pragma: no cover",
]

[tool.ruff]
target-version = "py312"
line-length = 88