Skip to content

Commit 54bf906

Browse files
committed
refactor(tests): simplify pytest norecursedirs to minimal config
Removed redundant entries from norecursedirs that pytest already handles automatically: - .github/scripts (doesn't exist + auto-excluded by dotted pattern) - .git (auto-excluded) - .venv (auto-excluded) - __pycache__ (auto-excluded) Kept only: - docs (non-dotted directory to skip) - temp (temporary files directory) Benefits: - Cleaner, more maintainable configuration - Relies on pytest's sensible defaults - Still excludes all necessary directories All 619 tests still discovered and running correctly.
1 parent 5f0a6b7 commit 54bf906

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,6 @@ asyncio_mode = "auto"
151151
testpaths = ["tests"]
152152
norecursedirs = [
153153
"docs",
154-
".github/scripts",
155-
".git",
156-
".venv",
157-
"__pycache__",
158154
"temp",
159155
]
160156
addopts = [

0 commit comments

Comments
 (0)