testing
Installation
SKILL.md
Testing Guide
Overview
This skill outlines test strategies, frameworks, and code examples to help you ensure your software behaves as expected.
Test Strategy
- Unit tests check individual functions or classes.
- Integration tests verify that components work together.
- End-to-end (E2E) tests simulate user workflows.
Python Testing with pytest
Installing pytest
pip install pytest pytest-cov