Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

uv-pytest-unit-testinguv pytest 单元测试

Agent Skill

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。它适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本、读写文件、访问数据库或调用外部 API 时,应先明确运行目录和输入输出范围,避免误改生产数据。

总安装

588

周安装

25

GitHub Stars

2

下载量

206
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:uv-pytest-unit-testing(uv pytest 单元测试)
来源仓库:https://github.com/gaelic-ghost/python-skills
仓库路径:skills/uv-pytest-unit-testing
安装命令:
npx skills add https://github.com/gaelic-ghost/python-skills --skill uv-pytest-unit-testing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/gaelic-ghost/python-skills --skill uv-pytest-unit-testing

简介

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。

  • 适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令或分析数据处理逻辑。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 使用时需确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本或读写文件时需明确运行目录和输入输出范围。
  • uv-pytest-unit-testing 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Uv Pytest Unit Testing

Purpose

Use this skill to standardize pytest setup and execution for uv-managed Python repositories, including single-project repos and uv workspaces.

When To Use

  • Use this skill for pytest setup, execution, and troubleshooting in uv-managed repositories.
  • Use this skill when the user wants package-targeted pytest runs for a workspace member.
  • Keep scope on test setup and execution; do not use this as a generic repo bootstrap skill.

Primary Workflow

  1. Detect repository mode.

- Treat the repo as a workspace when pyproject.toml defines [tool.uv.workspace]. - Treat it as a single project otherwise.

  1. Bootstrap pytest dependencies and baseline config:

- scripts/bootstrap_pytest_uv.sh --workspace-root <repo> - add --package <member-name> for workspace-member setup - add --with-cov when the task explicitly wants pytest-cov - add --dry-run when previewing changes

  1. Run tests:

- scripts/run_pytest_uv.sh --workspace-root <repo> - scripts/run_pytest_uv.sh --workspace-root <repo> --package <member-name>

  1. Troubleshoot failures in this order:

- command context - test discovery layout - marker registration - import-path assumptions

Test Authoring Guidance

  • Keep fast unit tests under tests/unit and integration-heavy tests under tests/integration when repo size warrants separation.
  • Use fixtures for setup reuse, and keep fixture scope minimal (function by default).
  • Use @pytest.mark.parametrize for matrix-style cases instead of hand-written loops.
  • Use monkeypatch for environment variables and runtime dependency replacement.
  • When generated projects use pydantic-settings, prefer overriding environment variables or the settings dependency rather than mutating committed .env files in tests.
  • Register custom marks in config to avoid marker warnings.

Automation Suitability

  • Codex App automation: High. Strong recurring fit for test health checks, failure triage, and drift detection.
  • Codex CLI automation: High. Strong fit for non-interactive test setup and targeted test sweeps.

Codex App Automation Prompt Template

Use $uv-pytest-unit-testing.

Scope boundaries:
- Work only inside <REPO_PATH>.
- Operate only on pytest setup and test execution tasks.
- Do not perform unrelated code refactors.

Task:
1. Detect repository mode from <WORKSPACE_ROOT>/pyproject.toml.
2. If <DRY_RUN_BOOTSTRAP:TRUE|FALSE> is TRUE, run:
   `scripts/bootstrap_pytest_uv.sh --workspace-root <WORKSPACE_ROOT> <PACKAGE_FLAG> <WITH_COV_FLAG> --dry-run`
3. If <DRY_RUN_BOOTSTRAP:TRUE|FALSE> is FALSE, run:
   `scripts/bootstrap_pytest_uv.sh --workspace-root <WORKSPACE_ROOT> <PACKAGE_FLAG> <WITH_COV_FLAG>`
4. Run tests with:
   `scripts/run_pytest_uv.sh --workspace-root <WORKSPACE_ROOT> <PACKAGE_FLAG> <TEST_PATH_FLAG> -- <PYTEST_ARGS>`
5. Keep package-targeted runs explicit when <PACKAGE_NAME_OR_EMPTY> is set.

Output contract:
1. STATUS: PASS or FAIL
2. SETUP: what bootstrap actions ran
3. TEST_RESULTS: concise pass/fail summary
4. FAILURES: grouped likely causes
5. NEXT_STEPS: minimal remediation actions

Codex CLI Automation Prompt Template

codex exec --full-auto --sandbox workspace-write --cd "<REPO_PATH>" "<PROMPT_BODY>"

<PROMPT_BODY> template:

Use $uv-pytest-unit-testing.
Limit scope to pytest setup and execution in <WORKSPACE_ROOT>.
Run bootstrap in dry-run or real mode based on <DRY_RUN_BOOTSTRAP:TRUE|FALSE>.
Run tests with explicit package targeting when <PACKAGE_NAME_OR_EMPTY> is set.
Return STATUS, setup actions, concise test summary, grouped likely causes for failures, and minimal next steps.

Customization Placeholders

  • <REPO_PATH>
  • <WORKSPACE_ROOT>
  • <PACKAGE_NAME_OR_EMPTY>
  • <PACKAGE_FLAG>
  • <TEST_PATH_OR_EMPTY>
  • <TEST_PATH_FLAG>
  • <PYTEST_ARGS>
  • <WITH_COV_FLAG:--with-cov|EMPTY>
  • <DRY_RUN_BOOTSTRAP:TRUE|FALSE>

Interactive Customization Workflow

  1. Ask whether users want bootstrap mode or run mode.
  2. Gather workspace root and optional package target.
  3. For bootstrap mode, gather with_cov and dry_run.
  4. For run mode, gather optional test path and optional pytest args.
  5. Return both:
  • A YAML profile for durable reuse.
  • The exact command to run.
  1. Use this precedence order:
  • CLI flags
  • --config profile file
  • .codex/profiles/uv-pytest-unit-testing/customization.yaml
  • ~/.config/gaelic-ghost/python-skills/uv-pytest-unit-testing/customization.yaml
  • Script defaults
  1. If users want temporary reset behavior:
  • --bypassing-all-profiles
  • --bypassing-repo-profile
  • --deleting-repo-profile
  1. If users provide no customization or profile files, keep existing script defaults unchanged.
  2. See references/interactive-customization.md for schema and examples.

Outputs

  • status

- success: setup or test execution completed - blocked: repo shape or prerequisites prevented the run - failed: bootstrap or test execution ran but did not complete cleanly

  • path_type

- primary: canonical shell entrypoints completed

  • output

- setup actions taken - exact run command used - concise failure grouping when applicable

Guardrails

  • Require uv for all installation and execution paths.
  • Require an existing pyproject.toml under --workspace-root.
  • Keep package targeting explicit when operating on a workspace member.

References

  • references/pytest-workflow.md
  • references/uv-workspace-testing.md
  • references/customization.md
  • references/interactive-customization.md

Script Inventory

  • scripts/bootstrap_pytest_uv.sh
  • scripts/run_pytest_uv.sh

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.91%
按下载量换算74

Claude

31.55%
按下载量换算65

Cursor

17.27%
按下载量换算36

Gemini CLI

8.13%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills