Skip to content
Merged
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
4 changes: 0 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,6 @@ asyncio_mode = "auto"
testpaths = ["tests"]
norecursedirs = [
"docs",
"scripts",
".git",
".venv",
"__pycache__",
"temp",
]
Comment on lines 152 to 155
Copy link

Copilot AI Jan 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description states "Updated norecursedirs to specifically exclude .github/scripts instead of all 'scripts' directories", but the actual change only removes "scripts" from the exclusion list without adding ".github/scripts". Additionally, the .github/scripts directory doesn't currently exist in the codebase.

The current change is correct and achieves the intended goal because testpaths = ["tests"] already restricts pytest to only search within the tests/ directory, so removing "scripts" from norecursedirs won't cause pytest to search in the root scripts/ or automation/scripts/ directories. However, the PR description should be updated to accurately reflect what the change does: it removes "scripts" from the exclusion list to enable test discovery in tests/unit/automation/scripts/.

Copilot uses AI. Check for mistakes.
addopts = [
Expand Down
Loading