Agent skill
testing
Automated test generation, review, and execution for pytest-based projects.
Install this agent skill to your Project
npx add-skill https://github.com/aiskillstore/marketplace/tree/main/skills/byronwilliamscpa/testing
SKILL.md
Testing Skill
Automated test generation, review, and execution for pytest-based projects.
Activation
Auto-activates on keywords: test, coverage, pytest, unittest, integration test, e2e, performance, benchmark, security testing
Workflows
Test Generation
- generate.md: Generate test cases for code
Test Review
- review.md: Review existing tests for quality
Specialized Testing
- e2e.md: End-to-end testing patterns
- security.md: Security testing patterns
- performance.md: Performance testing patterns
Context Files
- pytest-commands.md: Common pytest commands
- pytest-patterns.md: Testing patterns and best practices
Commands
# Run all tests
uv run pytest
# Run with coverage
uv run pytest --cov=src/fragrance_rater --cov-report=html --cov-report=term-missing
# Run specific test categories
uv run pytest -m "not slow"
uv run pytest -m "integration"
uv run pytest -m "unit"
# Run with verbose output
uv run pytest -v --tb=short
# Run mutation testing
uv run mutmut run --paths-to-mutate=src/
# Run property-based tests
uv run pytest --hypothesis-show-statistics
Coverage Standards
- Minimum Coverage: 80%
- Branch Coverage: Enabled
- Coverage Report: HTML and terminal output
Test Organization
tests/
├── unit/ # Unit tests (fast, isolated)
├── integration/ # Integration tests (may use external services)
├── e2e/ # End-to-end tests (full system)
├── security/ # Security-focused tests
├── performance/ # Performance and load tests
└── conftest.py # Shared fixtures
Testing Patterns
AAA Pattern (Arrange-Act-Assert)
def test_example():
# Arrange
input_data = create_test_data()
# Act
result = function_under_test(input_data)
# Assert
assert result == expected_output
Fixtures
@pytest.fixture
def sample_data():
return {"key": "value"}
def test_with_fixture(sample_data):
assert sample_data["key"] == "value"
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
perigon-backend
Perigon ASP.NET Core + EF Core + Aspire conventions
perigon-agent
Pointers for Copilot/agents to apply Perigon conventions
perigon-angular
Angular 21+ standalone/Material/signal conventions for Perigon WebApp
fastapi-mastery
Comprehensive FastAPI development skill covering REST API creation, routing, request/response handling, validation, authentication, database integration, middleware, and deployment. Use when working with FastAPI projects, building APIs, implementing CRUD operations, setting up authentication/authorization, integrating databases (SQL/NoSQL), adding middleware, handling WebSockets, or deploying FastAPI applications. Triggered by requests involving .py files with FastAPI code, API endpoint creation, Pydantic models, or FastAPI-specific features.
context7-efficient
Token-efficient library documentation fetcher using Context7 MCP with 86.8% token savings through intelligent shell pipeline filtering. Fetches code examples, API references, and best practices for JavaScript, Python, Go, Rust, and other libraries. Use when users ask about library documentation, need code examples, want API usage patterns, are learning a new framework, need syntax reference, or troubleshooting with library-specific information. Triggers include questions like "Show me React hooks", "How do I use Prisma", "What's the Next.js routing syntax", or any request for library/framework documentation.
browser-use
Browser automation using Playwright MCP. Navigate websites, fill forms, click elements, take screenshots, and extract data. Use when tasks require web browsing, form submission, web scraping, UI testing, or any browser interaction.
Didn't find tool you were looking for?