testing

Installation
SKILL.md

Testing Standards

Framework

  • Use pytest for all tests
  • Target 80%+ code coverage

File Organization

  • Tests in tests/ directory mirroring src/ structure
  • Test files: test_<module>.py or <module>_test.py
  • Test functions: test_<description>

Fixtures

  • Use fixtures for reusable test data
  • Prefer scope="function" unless shared state is needed
  • Use conftest.py for shared fixtures

Example:

import pytest
Related skills
Installs
1
GitHub Stars
492
First Seen
Apr 26, 2026