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 查看