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.

Zur Installation springen

Quellinformationen

Repository
hoangsonww/AI-Agents-Orchestrator
Letzte Quellaktivität
4. April 2026 um 03:50
Erkannte Sprache von SKILL.md
Englisch
Sterne
83
Forks
28

Installationsoptionen

Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.

Quelldateien prüfen

Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.

Datei-Explorer
3 Dateien

SKILL.md wird angezeigt

SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
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
Auf GitHub ansehen