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.

インストールへ移動

ソース情報

リポジトリ
hoangsonww/AI-Agents-Orchestrator
ソースの最終更新活動
2026年4月4日 03:50
検出された SKILL.md の言語
英語
スター
84
フォーク
27

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

ファイルエクスプローラー
3 ファイル

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
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
GitHubで見る