claude-code-plugin-ref…
Explain plugin, skill, command, agent, and hook mechanics used here. Use when authoring or debugging plugins. Do not use for ops; use night-market-operations.
Python testing patterns with pytest, fixtures, TDD, mocking, async and integration tests. Use when writing or auditing a Python test suite.
$ npx -y skills add athola/claude-night-market --skill python-testing --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/python-testingContext preview
The summary Claude sees to decide when to auto-load this skill.
Python testing patterns with pytest, fixtures, TDD, mocking, async and integration tests. Use when writing or auditing a Python test suite.
name: python-testing description: Python testing patterns with pytest, fixtures, TDD, mocking, async and integration tests. Use when writing or auditing a Python test suite. globs: "**/*.py" alwaysApply: false category: testing tags: - python - testing - pytest - tdd - test-automation - quality-assurance tools: [] usage_patterns: - testing-implementation - test-suite-setup - test-refactoring - ci-cd-integration complexity: intermediate model_hint: standard estimated_tokens: 900 progressive_loading: true modules: - modules/unit-testing.md - modules/fixtures-and-mocking.md - modules/test-infrastructure.md - modules/testing-workflows.md - modules/test-quality.md - modules/async-testing.md
Testing standards for pytest configuration, fixture management, and TDD implementation.
1. [Quick Start](#quick-start) 2. [When to Use](#when-to-use) 3. [Modules](#modules)
1. **Dependencies**: `pip install pytest pytest-cov pytest-asyncio pytest-mock` 2. **Configuration**: Add the following to `pyproject.toml`:
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=src"3. **Verification**: Run `pytest` to confirm discovery of files matching `test_*.py`.
quality - use pensive:test-review instead
config - use leyline:pytest-config
This skill uses modular loading to manage the system prompt budget.
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Explain plugin, skill, command, agent, and hook mechanics used here. Use when authoring or debugging plugins. Do not use for ops; use night-market-operations.
States load-bearing decisions, invariants, and weak points. Use when judging a design change. Do not use for gating; use night-market-change-control.
Rebuild the dev environment: uv, Python tiers, pins, traps. Use when onboarding or toolchain breaks. Do not use for daily commands; use night-market-operations.
Classify, gate, and review changes. Use when landing a PR, releasing, or amending rules. Do not use for failure triage; use night-market-debugging-playbook.
Search and record project memory (Discussions, journal, ADRs). Use before re-investigating anything. Do not use for settled battles; see failure-archaeology.
Bind loop 'done' to unfakeable gates. Use to harden egregore/herald loops or promote completion_integrity. Not for QA gates; use night-market-validation-and-qa.