e261ea5abe
CI / push-validation (pull_request) Successful in 34s
CI / helm (pull_request) Successful in 36s
CI / lint (pull_request) Successful in 3m55s
CI / typecheck (pull_request) Successful in 4m35s
CI / security (pull_request) Successful in 4m43s
CI / build (pull_request) Successful in 3m57s
CI / quality (pull_request) Successful in 4m26s
CI / e2e_tests (pull_request) Successful in 8m57s
CI / integration_tests (pull_request) Successful in 10m49s
CI / unit_tests (pull_request) Successful in 11m56s
CI / docker (pull_request) Failing after 46s
CI / coverage (pull_request) Successful in 14m47s
CI / status-check (pull_request) Failing after 3s
- Remove committed test_reports/ CI artifacts (summary.txt, test_results.json) - Add test_reports/ to .gitignore to prevent future commits - Update CHANGELOG.md with Fixed entry for #9401 under [Unreleased] - Update CONTRIBUTORS.md with credit for directory clustering fix (#9401) - Add BDD test scenarios for absolute path clustering in features/large_project_decomposition.feature: * Directory clustering works correctly with absolute file paths * _directory_key returns correct key for absolute path with root * Directory clustering does not collapse all absolute paths into one bucket - Add corresponding step implementations in features/steps/large_project_decomposition_coverage_steps.py All 38 scenarios pass (including 3 new absolute path scenarios). Lint and typecheck pass. ISSUES CLOSED: #9401
186 lines
2.1 KiB
Plaintext
186 lines
2.1 KiB
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
.nox/
|
|
.cache
|
|
nosetests.xml
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Django stuff:
|
|
*.log
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
|
|
# Flask stuff:
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# Scrapy stuff:
|
|
.scrapy
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
# PyBuilder
|
|
.pybuilder/
|
|
target/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# IPython
|
|
profile_default/
|
|
ipython_config.py
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# pipenv
|
|
Pipfile.lock
|
|
|
|
# PEP 582
|
|
__pypackages__/
|
|
|
|
# Celery stuff
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# SageMath parsed files
|
|
*.sage.py
|
|
|
|
# Environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Spyder project settings
|
|
.spyderproject
|
|
.spyproject
|
|
|
|
# Rope project settings
|
|
.ropeproject
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Pyre type checker
|
|
.pyre/
|
|
|
|
# pytype static type analyzer
|
|
.pytype/
|
|
|
|
# Cython debug symbols
|
|
cython_debug/
|
|
|
|
# VS Code
|
|
.vscode/
|
|
|
|
# IntelliJ
|
|
.idea/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# uv
|
|
uv.lock
|
|
|
|
# Forgejo/GitHub
|
|
.forgejo-token
|
|
.github-token
|
|
|
|
**/settings.local.json
|
|
|
|
# Claude Flow generated files
|
|
.claude/settings.local.json
|
|
.mcp.json
|
|
claude-flow.config.json
|
|
.swarm/
|
|
.hive-mind/
|
|
memory/claude-flow-data.json
|
|
memory/sessions/*
|
|
!memory/sessions/README.md
|
|
memory/agents/*
|
|
!memory/agents/README.md
|
|
coordination/memory_bank/*
|
|
coordination/subtasks/*
|
|
coordination/orchestration/*
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
*.sqlite
|
|
*.sqlite-journal
|
|
*.sqlite-wal
|
|
claude-flow
|
|
claude-flow.bat
|
|
claude-flow.ps1
|
|
hive-mind-prompt-*.txt
|
|
|
|
.cleveragents/
|
|
config.local.toml
|
|
.pabotsuitenames
|
|
PIPE
|
|
|
|
# Deprecated packages — removed by ADR-047 (ACP → A2A rename)
|
|
src/cleveragents/acp/
|
|
|
|
# Git worktrees for parallel task branches
|
|
worktrees/
|
|
*.bak
|
|
ca-cow-backup-*/
|
|
|
|
|
|
log.html
|
|
output.xml
|
|
report.html
|
|
.agent-orchestration
|
|
agents-test
|
|
|
|
# Generated test reports (CI artifacts)
|
|
test_reports/
|