a6d578c4a8
The test suite was carrying migration scars and a long tail of low-density assertions over SDK-derived behavior. Drop it wholesale. - Delete ``tests/`` (42 files, ~4900 LoC). - Drop ``pytest`` / ``pytest-asyncio`` / ``pytest-cov`` / ``pytest-mock`` from the dev dependency group; ``uv sync`` uninstalls the matching wheels. - Strip the pytest + coverage config blocks, the ``flake8-pytest-style`` ruff selector, the ``tests/**`` per-file ignores, the ``[tool.mypy.overrides] tests.*`` block, and the ``"tests"`` entry from bandit's ``exclude_dirs``. - Drop the ``test`` / ``test-cov`` Makefile targets; ``dev`` no longer depends on tests. - Strip the ``# Testing`` block from ``.gitignore`` (``.coverage``, ``.pytest_cache/``, ``htmlcov/``, ``coverage.xml``, ``nosetests.xml``, ``.tox/``, ``.hypothesis/``). ruff (27) and mypy (82) baselines unchanged. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
88 lines
775 B
Plaintext
88 lines
775 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.env
|
|
.venv
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
.project
|
|
.pydevproject
|
|
.settings/
|
|
|
|
# FastAPI
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# MongoDB
|
|
data/
|
|
mongod.log
|
|
*.mongodb
|
|
*.mongorc.js
|
|
|
|
# LLM and ML related
|
|
*.bin
|
|
*.pt
|
|
*.pth
|
|
*.onnx
|
|
*.h5
|
|
*.hdf5
|
|
*.pkl
|
|
*.joblib
|
|
wandb/
|
|
runs/
|
|
checkpoints/
|
|
logs/
|
|
tensorboard/
|
|
|
|
# Agent execution traces
|
|
strix_runs/
|
|
agent_runs/
|
|
|
|
# Misc
|
|
*.log
|
|
*.sqlite
|
|
*.db
|
|
.directory
|
|
*.bak
|
|
*.tmp
|
|
*.temp
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
*.schema.graphql
|
|
schema.graphql
|
|
|
|
.opencode/
|