Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
[run]
source = kinde_sdk
# Enable subprocess measurement for pytest-cov v7 compatibility
# pytest-cov v7 removed built-in subprocess measurement via .pth files
# This option requires coverage>=7.10.6 (specified in requirements.txt)
# If you see a warning about unrecognized option, upgrade coverage first
patch = subprocess
omit =
# Generated OpenAPI files
kinde_sdk/management/api/*
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ zip-safe = false

[tool.poetry.dev-dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-cov = "^7.0.0"
coverage = ">=7.10.6"
pytest-django = "^4.5.2"
mypy = "^1.5.0"
bandit = "^1.7"
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ pydantic>=2.0.0,<3.0.0
pytest>=7.4.0
pytest-django>=4.5.2
pytest-asyncio>=0.21.1
pytest-cov>=4.1.0
pytest-cov>=7.0.0
coverage>=7.10.6
pytest-timeout>=2.2.0
black>=23.7.0
flake8>=6.1.0
Expand Down