Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

pytest-django-patternspytest Django 模式

Agent Skill

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

总安装

582

周安装

24

GitHub Stars

126

下载量

190
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kjnez/claude-code-django --skill pytest-django-patterns

简介

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流,适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令或分析数据处理逻辑。

  • 适用于开发类项目,支持 Django 测试模式与应用。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认项目虚拟环境、依赖版本和测试入口。
  • 涉及执行脚本、读写文件或访问数据库时,应先明确运行目录和输入输出范围,避免误改生产数据。
  • 可结合原始 README 进一步核验具体用法和功能边界。

SKILL.md

pytest-django Testing Patterns

TDD Workflow (RED-GREEN-REFACTOR)

Always follow this cycle:

  1. RED: Write a failing test first that describes desired behavior
  2. GREEN: Write minimal code to make the test pass
  3. REFACTOR: Clean up code while keeping tests green
  4. REPEAT: Never write production code without a failing test

Critical rule: If implementing a feature or fixing a bug, write the test BEFORE touching production code.

Essential pytest-django Patterns

Database Access

  • Use @pytest.mark.django_db on any test touching the database
  • Apply to entire module: pytestmark = pytest.mark.django_db
  • Transactions roll back automatically after each test

Fixtures for Test Data

Use Factory Boy for models, pytest fixtures for setup:

  • Factories: Create model instances with realistic data (UserFactory())

- Use factory.Sequence() for unique fields - Use factory.Faker() for realistic fake data - Use factory.SubFactory() for foreign keys - Use @factory.post_generation for M2M relationships

  • Fixtures: Setup clients, auth state, or shared resources

- client fixture: Django test client - Create auth_client fixture: client.force_login(user) for authenticated requests - Define in conftest.py for reuse across test files

Test Organization

Structure tests to mirror app structure:

tests/
├── apps/
│   └── posts/
│       ├── test_models.py
│       ├── test_views.py
│       └── test_forms.py
├── factories.py
└── conftest.py

Group related tests in classes:

  • Name classes TestComponentName (e.g., TestPostListView)
  • Name test methods descriptively: test_<action>_<expected_outcome>
  • Use @pytest.mark.parametrize for testing multiple scenarios

What to Test

Views

  • Status codes: Correct HTTP responses (200, 404, 302)
  • Authentication: Authenticated vs anonymous behavior
  • Authorization: User can only access their own data
  • Context data: Correct objects passed to template
  • Side effects: Database changes, emails sent, tasks queued
  • HTMX: Check HTTP_HX_REQUEST header returns partial template

Forms

  • Validation: Valid data passes, invalid data fails with correct errors
  • Edge cases: Empty fields, max lengths, unique constraints
  • Clean methods: Custom validation logic works
  • Save behavior: Objects created/updated correctly

Models

  • Methods: __str__, custom methods return expected values
  • Managers/QuerySets: Custom filtering works correctly
  • Constraints: Database-level validation enforced
  • Signals: Pre/post save hooks execute correctly

Celery Tasks

  • Mock external calls: Patch HTTP requests, email sending, etc.
  • Test logic only: Don't test actual async execution
  • Idempotency: Running task multiple times is safe

Django-Specific Testing Patterns

Testing HTMX Responses

Check partial template rendered when HX-Request header present:

  • Pass HTTP_HX_REQUEST="true" to client request
  • Assert response.templates contains partial template name

Testing Permissions

Create authenticated vs anonymous client fixtures:

  • Test redirect/403 for unauthorized access
  • Test success for authorized access

Testing QuerySets

Verify efficient queries:

  • Create test data with factories
  • Execute query
  • Assert correct objects returned/excluded
  • Verify related objects loaded with select_related()/prefetch_related()

Testing Forms with Model Instances

Pass instance to form for updates:

  • form = MyForm(data=new_data, instance=existing_obj)
  • Verify form.save() updates, doesn't create

Common Patterns

Parametrize multiple scenarios: Use @pytest.mark.parametrize("input,expected", [...]) for testing various inputs

Mock external services: Use mocker.patch() to avoid actual HTTP calls, emails, file operations

Check database changes:

  • Assert Model.objects.filter(...).exists() after creation
  • Assert Model.objects.count() == expected for deletions
  • Use refresh_from_db() to verify updates

Test error handling:

  • Invalid form data produces correct errors
  • Failed operations return error responses
  • User sees appropriate error messages

Running Tests

uv run pytest                    # All tests
uv run pytest -x                 # Stop on first failure
uv run pytest --lf               # Run last failed
uv run pytest -x --lf            # Stop first, last failed only
uv run pytest -k "test_name"     # Run tests matching pattern
uv run pytest tests/apps/posts/  # Specific directory
uv run pytest --cov=apps         # With coverage report

Common Pitfalls

  • Forgetting @pytest.mark.django_db: Results in "Database access not allowed" errors
  • Not using factories: Creating instances manually is verbose and brittle
  • Testing implementation: Test behavior and outcomes, not internal implementation details
  • Skipping TDD: Writing tests after code means tests follow implementation, missing edge cases
  • Over-mocking: Mock external dependencies, not your own code
  • Testing framework code: Don't test Django's ORM, form validation, etc. Test YOUR logic

Setup Requirements

In pyproject.toml:

[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings.test"
python_files = ["test_*.py"]
addopts = ["--reuse-db", "-ra"]

In conftest.py: Define shared fixtures (auth_client, common factories, etc.)

Integration with Other Skills

  • systematic-debugging: When fixing bugs, write failing test first to reproduce
  • django-models: Test custom managers, QuerySets, and model methods
  • django-forms: Test form validation, clean methods, and save behavior
  • celery-patterns: Test task logic with mocked external dependencies

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.06%
按下载量换算63

Claude

30.02%
按下载量换算57

Cursor

20%
按下载量换算38

Gemini CLI

8.92%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills