一键导入
test
Run unified test suite for BVR Sim. One-click testing with automatic build and validation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run unified test suite for BVR Sim. One-click testing with automatic build and validation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Develop and contribute to the PinchTab project. Use when working on PinchTab source code, adding features, fixing bugs, running tests, or preparing PRs. Triggers on "work on pinchtab", "pinchtab development", "contribute to pinchtab", "fix pinchtab bug", "add pinchtab feature".
Use this skill when a task needs browser automation through PinchTab: open a website, inspect interactive elements, click through flows, fill out forms, scrape page text, log into sites with a persistent profile, export screenshots or PDFs, manage multiple browser instances, or fall back to the HTTP API when the CLI is unavailable. Prefer this skill for token-efficient browser work driven by stable accessibility refs such as `e5` and `e12`.
基于 SOC 职业分类
| name | test |
| description | Run unified test suite for BVR Sim. One-click testing with automatic build and validation. |
Run comprehensive tests automatically from the project root.
| Command | Description |
|---|---|
python run_tests.py | Run full test suite (build + all tests) |
The unified test suite (run_tests.py) does:
build_windows.bat, Linux: build_linux.sh)bvr_sim package directly (no pip install)# From project root, run all tests
python run_tests.py
Use linux bash param style (-d), rather than dos style (/d).
Incorrect:
cd /d G:/bvr_sim && python run_tests.py # Wrong - bash error cd: too many arguments
Correct (relative path):
python run_tests.py # Right - works anywhere
build_windows.bat completed successfully (looks for bvr_sim_cpp.pyd in bvr_sim/)