python-testing
النجوم٢
التفرعات٠
آخر تحديث٢٥ فبراير ٢٠٢٦ في ٠٤:٣٧
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