python-testing
スター2
フォーク0
更新日2026年2月25日 04:37
Python testing patterns with pytest
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
Python testing patterns with pytest
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Code review checklist and structured review output
Git branching and commit conventions for StrawPot agents
OWASP security checklist for code changes
TypeScript coding patterns and conventions
| name | python-testing |
| description | Python testing patterns with pytest |
Use pytest as the test runner. Follow existing project conventions for test
file placement.
def test_<unit>_<scenario>():
# Arrange
...
# Act
...
# Assert
...
tmp_path over manual temp directoriestest_<module>.py matching the source modulepytest