ワンクリックで
testing
pytest testing standards: naming, fixtures, isolation, and parametrize patterns.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
pytest testing standards: naming, fixtures, isolation, and parametrize patterns.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Dual-model adversarial review: Claude and Copilot review independently, verdicts are synthesized.
Implement the SDD task list. Read tasks and design from memory, write code, run tests.
Archive all SDD artifacts for a change as a single completed record in memory.
Write the technical design for a planned change: components, interfaces, data flows, edge cases.
Explore the codebase to build context for a planned change. First phase of the SDD workflow.
Propose 2–3 solution approaches for a planned change, evaluating trade-offs and recommending one.
| name | testing |
| description | pytest testing standards: naming, fixtures, isolation, and parametrize patterns. |
| when_to_use | When writing or reviewing test files in tests/ or matching *test*.py. |
| user-invocable | false |
| hub-skill-ids | ["review"] |
pytest — uv run pytest -q
REQUIRE:
test_<subject>_<condition>_<expected_outcome>tmp_path fixture for filesystem-touching testsREJECT if:
PREFER:
pytest.mark.parametrize over repeated similar test functionsconftest.py for shared fixtures within a package