641 B
641 B
Python Harness Notes
Use this reference for Python repositories.
Common files to inspect
pyproject.tomlrequirements.txtpoetry.lockuv.locksrc/tests/tox.ininoxfile.py
Common validation commands
Typical examples:
pytestruff check .mypy .python -m buildtox
Prefer environment-specific commands already documented by the repo.
Common guardrails
- avoid mixing package managers in guidance
- be explicit about virtualenv or tool runner if required
- note when tests depend on services, fixtures, or secrets
- prefer local, minimal edits over package-wide rewrites