Nm Parseltongue Python Testing

👤 athola 📦 v1.9.16 ⭐ 4.5 ⬇️ 1.1K 下载
💻 开发编程 免费

📖 技能介绍


name: python-testing description: | Python testing patterns with pytest, fixtures, TDD, mocking, async and integration tests version: 1.9.8 triggers: - python - testing - pytest - tdd - test-automation - quality-assurance - writing or auditing a Python test suite metadata: {"openclaw": {"homepage": "https://github.com/athola/claude-night-market/tree/master/plugins/parseltongue", "emoji": "\ud83e\uddea"}} source: claude-night-market source_plugin: parseltongue


Night Market Skill — ported from claude-night-market/parseltongue. For the full experience with agents, hooks, and commands, install the Claude Code plugin.

Python Testing Hub

Testing standards for pytest configuration, fixture management, and TDD implementation.

Table of Contents

  1. Quick Start
  2. When to Use
  3. Modules

Quick Start

  1. Dependencies: pip install pytest pytest-cov pytest-asyncio pytest-mock
  2. Configuration: Add the following to pyproject.toml: toml [tool.pytest.ini_options] testpaths = ["tests"] addopts = "--cov=src"
  3. Verification: Run pytest to confirm discovery of files matching test_*.py.

When To Use

  • Constructing unit and integration tests for Python 3.9+ projects.
  • Isolating external dependencies using pytest-mock or custom monkeypatching.
  • Validating asynchronous logic with pytest-asyncio markers and event loop management.
  • Configuring project-wide coverage thresholds and reporting.

When NOT To Use

  • Evaluating test quality - use pensive:test-review instead
  • Infrastructure test config - use leyline:pytest-config

Modules

This skill uses modular loading to manage the system prompt budget.

Core Implementation

  • See modules/unit-testing.md - AAA (Arrange-Act-Assert) pattern, basic test structure, and exception validation.
  • See modules/fixtures-and-mocking.md - Request-scoped fixtures, parameterization, and boundary mocking.
  • See modules/async-testing.md - Coroutine testing, async fixtures, and concurrency validation.

Infrastructure & Workflow

  • See modules/test-infrastructure.md - Directory standards, conftest.py management, and coverage tools.
  • See modules/testing-workflows.md - Local execution patterns and GitHub Actions integration.

Standards

  • See modules/test-quality.md - Identification of common anti-patterns like broad exception catching or shared state between tests.

Exit Criteria

推荐访问7w4.net获取更多AI技能。

  • Tests implement the AAA pattern.
  • Coverage reaches the 80% project minimum.
  • Individual tests are independent and do not rely on execution order.
  • Fixtures are scoped appropriately (function, class, or session) to prevent side effects.
  • Mocking is restricted to external system boundaries.

Troubleshooting

  • Test Discovery: Verify filenames match the test_*.py pattern. Use pytest --collect-only to debug discovery paths.
  • Import Errors: Ensure the local source directory is in the path, typically by installing in editable mode with pip install -e ..
  • Async Failures: Confirm that pytest-asyncio is installed and that async tests use the @pytest.mark.asyncio decorator or corresponding auto-mode configuration.

🤖 AI 评测

这是一个质量较高的 Python 测试技能库,内容覆盖全面,代码示例丰富,适合希望提升测试技能的开发者使用。主要优点是结构清晰、指导明确;不足之处是部分高级主题讲解不够深入,部分配置示例可能需要根据实际情况调整。整体而言,这是一个实用的测试参考工具。

📊 多维度评分

适应性4.5
规范性4.5
有效性4.7
可靠性4.6
可信度4.4

📁 包含文件 (9 个)

📄 SKILL.md 3.3 KB
📄 _meta.json 150 B
📄 modules/async-testing.md 4.9 KB
📄 modules/fixtures-and-mocking.md 4.4 KB
📄 modules/test-infrastructure.md 3.2 KB
📄 modules/test-quality.md 3.9 KB
📄 modules/testing-workflows.md 3.3 KB
📄 modules/unit-testing.md 1.9 KB
📄 skill-card.md 1.8 KB