verify

Execute pytest test suites and report coverage with failure tracebacks.

18|6|Updated Apr 1, 2026
One-click install
npx skills add https://github.com/minh2004pd/chatbotfullpipeline --skill verify-minh2004pd
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: verify
Source: https://github.com/minh2004pd/chatbotfullpipeline/tree/main/.claude/skills/verify
Command: npx skills add https://github.com/minh2004pd/chatbotfullpipeline --skill verify-minh2004pd

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps developers verify code changes by running the full test suite and reporting test coverage, ensuring software quality before deployment.

Core Features & Use Cases

  • Execute the complete test suite for backend code and generate coverage reports.
  • Identify failing tests and provide tracebacks to guide quick fixes.
  • Integrate with CI/local workflows to enforce quality gates before merge.

Quick Start

Run the verify process to execute the backend test suite with coverage and review the results.

Frequently Asked Questions about verify

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

FAQPage Schema
How do I run pytest with coverage to verify backend code changes?

You can verify backend code changes by running the full pytest test suite to execute tests and collect coverage metrics. This process validates your code and generates a coverage report to ensure software quality before deployment.

What is the best way to enforce a quality gate in a CI pipeline before merge?

The best way to enforce a pre-merge quality gate is to integrate test execution and coverage checks into your CI pipeline. Running the backend test suite surfaces failures with tracebacks to guide fixes before code is merged.

How do I get tracebacks for failing tests to guide quick fixes?

To get tracebacks for failing tests, execute the test suite during your verification process. The system identifies failing tests and outputs detailed tracebacks, providing the exact guidance needed to debug and fix code issues quickly.

Can I use this to collect coverage metrics for local development?

Yes, you can use this to collect coverage metrics during local development. It applies to local workflows alongside CI pipelines, allowing developers to run tests and review coverage reports locally before submitting changes.

Does this test verification process work without external dependencies?

Yes, the test verification process works without external dependencies. It operates directly on existing pytest-based tests within your backend codebase to execute tests and report coverage without requiring additional setup.