Skip to main content

run-tests

Run the project test suite with optional filtering by marker or file. Use when you need to verify code changes, check test status, or diagnose test failures.

Aller à l'installation

Informations de source

Dépôt
hoangsonww/AI-Agents-Orchestrator
Dernière activité de la source
4 avril 2026 à 03:50
Langue détectée de SKILL.md
anglais
Étoiles
84
Forks
27

Options d'installation

Le prompt qui vérifie d'abord la source est sélectionné par défaut. Vous pouvez passer à une commande directe ou télécharger une copie locale.

Vérifiez les fichiers source

Lisez SKILL.md et les fichiers associés affichés par SkillsMP avant de décider de l'installer.

Explorateur de fichiers
3 fichiers

Affichage de SKILL.md

SKILL.md
Instructions source · Aperçu en lecture seule
name
run-tests
description
Run the project test suite with optional filtering by marker or file. Use when you need to verify code changes, check test status, or diagnose test failures.
Run the test suite for the AI Coding Tools Orchestrator. ## Default (unit tests only) ```bash python -m pytest tests/ --override-ini="addopts=" -q --timeout=30 -m "not integration and not slow" ``` ## By marker If the user specifies a marker (unit, integration, slow, security, agentic_team): ```bash python -m pytest tests/ --override-ini="addopts=" -q --timeout=30 -m "<marker>" ``` ## By file If the user specifies a test file: ```bash python -m pytest tests/test_<name>.py --override-ini="addopts=" -q --timeout=30 ``` ## After running 1. Report: total passed, failed, errors 2. For each failure: test name, error message, likely root cause 3. If all pass, confirm with the count
Voir sur GitHub