test

Execute pytest tests for the MenGrowth project to verify code functionality.

Updated Nov 15, 2025
One-click install
npx skills add https://github.com/MarioPasc/MenGrowth --skill test-mariopasc
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test
Source: https://github.com/MarioPasc/MenGrowth/tree/main/.claude/skills/test
Command: npx skills add https://github.com/MarioPasc/MenGrowth --skill test-mariopasc

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill ensures the quality and correctness of the MenGrowth project by running its automated test suite.

Core Features & Use Cases

  • Automated Testing: Executes the project's pytest test suite.
  • Targeted Testing: Allows running specific tests via arguments.
  • Use Case: Before deploying a new feature, run all project tests to catch any regressions or bugs introduced.

Quick Start

Run all tests in the tests directory.

Frequently Asked Questions about test

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

FAQPage Schema
How do I run pytest tests for my project to verify code functionality?

You can run pytest tests to verify code functionality by executing the project's automated test suite. This Skill runs the pytest test suite to ensure code stability and check for regressions before deployment.

Can I run specific pytest tests instead of the entire test suite?

Yes, you can run specific pytest tests by passing arguments to target individual tests. This targeted testing approach allows you to verify specific code functionality without executing the full test directory.

Do I need pytest installed to run automated tests in my development workflow?

Yes, you need pytest installed in your environment to execute automated tests. The Skill requires pytest to be present for deterministic test execution during continuous integration and development workflows.

What is automated testing used for in continuous integration and development workflows?

Automated testing in continuous integration verifies code functionality and ensures code stability. It catches regressions or bugs introduced by new features before deployment by running the project's pytest test suite.

When should I run my project's pytest test suite to catch regressions?

You should run your project's pytest test suite before deploying a new feature to catch any regressions or bugs introduced. This ensures code quality and correctness within your development workflows.