Files
prompts/skills/pytest-scaffolding/references/pytest-docs.md
T
John Lancaster c8906cef7b reorg
2026-06-16 23:39:45 -05:00

990 B

Pytest Documentation Notes

Primary references used:

Practical Guidance For This Skill

  • Use src-aligned test layout and keep test discovery conventional.
  • Keep fixtures small, composable, and explicit; use yield for teardown.
  • Register custom markers and keep strict marker validation on.
  • Separate quick unit runs from slower integration/external runs.
  • Minimize flakiness by controlling shared state and avoiding hidden dependencies.
  • Use --collect-only and marker-filtered runs to validate scaffold quality early.

Commands Worth Remembering

  • uv run pytest --collect-only -q
  • uv run pytest -m unit -q
  • uv run pytest -m "not external" -q
  • uv run pytest -q