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