test-all

Run the full pytest suite for a trading platform with coverage and marker filters.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/maminul007/trading-platform --skill test-all
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test-all
Source: https://github.com/maminul007/trading-platform/tree/main/.claude/skills/test-all
Command: npx skills add https://github.com/maminul007/trading-platform --skill test-all

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill streamlines the process of running comprehensive test suites across the entire trading platform, ensuring code quality and stability.

Core Features & Use Cases

  • Full Test Execution: Runs all tests within the project.
  • Targeted Testing: Allows filtering tests by markers like unit, integration, e2e, slow, etc.
  • Coverage Reporting: Generates code coverage reports to identify untested areas.
  • Use Case: Before deploying a new feature, run /test-all --cov to ensure all tests pass and that the new code is adequately covered.

Quick Start

Execute the full test suite with coverage reporting by running the command /test-all --cov.

Frequently Asked Questions about test-all

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a full test suite with pytest and generate code coverage for a trading platform?

Run a full test suite with pytest and generate code coverage using a command like `/test-all --cov`. This executes all tests and reports untested code areas.

Can I filter pytest tests by markers like unit, integration, or slow?

Yes, you can filter pytest tests by markers like unit, integration, e2e, and slow. This allows running specific test types or excluding slow tests during targeted validation.

What is the best way to ensure deterministic test execution across a trading platform codebase?

Deterministic test execution is ensured by running a comprehensive test suite that validates all services and applies marker-based filtering for consistent, reliable results.

Does this test automation skill support running tests for specific services within the project?

Yes, this test automation skill supports running tests for specific services within the project. It executes the complete suite while allowing targeted filtering by service or marker.

Why use marker-based filtering when running a full test suite for CI CD automation?

Marker-based filtering in CI CD automation allows excluding slow tests or running only unit and integration tests. This ensures faster, targeted feedback during continuous deployment pipelines.