Skip to content
Open
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: 2 additions & 2 deletions src/agentready/assessors/structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ def _check_file_cohesion(self, repository: Repository) -> tuple:
# Skip venv, node_modules, etc.
if any(
part in py_file.parts
for part in [".venv", "venv", "node_modules", ".git"]
for part in [".venv", "venv", "node_modules", ".git", ".tox"]
):
continue

Expand Down Expand Up @@ -1091,7 +1091,7 @@ def _check_module_naming(self, repository: Repository) -> tuple:
for m in matches
if not any(
part in m.parts
for part in [".venv", "venv", "node_modules", ".git"]
for part in [".venv", "venv", "node_modules", ".git", ".tox"]
)
]
if matches:
Expand Down
Loading