Skip to content

Commit 5f0a6b7

Browse files
committed
fix(tests): enable automation test discovery in pytest
The pytest configuration was excluding all "scripts" directories from test discovery, which prevented 108 automation tests in tests/unit/automation/scripts/ from running in CI. Changes: - Updated norecursedirs to specifically exclude .github/scripts instead of all "scripts" directories - This allows test discovery in tests/unit/automation/scripts/ Impact: - Automation tests now run in CI (+108 tests) - Automation coverage increased from 0% to 61% - Total test count: 492 → 600 All 108 automation tests pass successfully.
1 parent 4312966 commit 5f0a6b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ asyncio_mode = "auto"
151151
testpaths = ["tests"]
152152
norecursedirs = [
153153
"docs",
154-
"scripts",
154+
".github/scripts",
155155
".git",
156156
".venv",
157157
"__pycache__",

0 commit comments

Comments
 (0)