pytest-tests

pytest-tests is a cursor rule for Cursor from iloveitaly/llm-ide-rules. It costs 0 tokens per session (571 once invoked), scanned A, original, MIT.

Testing rules for Python applications that use pytest, a framework for writing and running automated tests.

In plain words
What is it for?
They guide database setup with factories, email test data with Faker, route tests, shared database fixtures, and Stripe tests against the sandbox API.
Why use it?
They encourage tests to use realistic application data and real application layers, while avoiding mocks that can hide integration problems.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/iloveitaly/llm-ide-rules/pytest-tests
Clone the repo
git clone --depth 1 https://github.com/iloveitaly/llm-ide-rules

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pytest-tests

README.md
[![agentmods](https://agentmods.dev/badge/rules/iloveitaly/llm-ide-rules/pytest-tests.svg)](https://agentmods.dev/rules/iloveitaly/llm-ide-rules/pytest-tests)
Your own site
<a href="https://agentmods.dev/rules/iloveitaly/llm-ide-rules/pytest-tests"><img src="https://agentmods.dev/badge/rules/iloveitaly/llm-ide-rules/pytest-tests.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 571 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00571
Opus 5 $0.00000 $0.00285
Sonnet 5 $0.00000 $0.00114
Haiku 4.5 $0.00000 $0.00057

Measured 4d ago against content hash d78533118d33, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

pytest-tests scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/pytest-tests.mdc · 56 lines

How it starts

The opening of the file, as written. The whole thing — 56 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Pytest Tests

  • Look first to app.factories.* instead of app.models.* to generate any required database state
    • For example, to create and persist a Distribution record DistributionFactory.save()
    • If a factory doesn't exist for the model you are working with, create one.
    • You can customize one or more params in a factory using DistributionFactory.save(host="custom_host.com)
  • Use faker factory to generate emails, etc.
  • Do not mock or patch unless I instruct you to. Test as much of the application stack as possible in each test.
  • If you get lazy attribute errors, or need a database session to share across logic, use the db_session fixture to fix the issue.
    • Note that when writing route tests a db_session is not needed for the logic inside of the route.
  • When testing Stripe, use the sandbox API. Never mock out Stripe interactions unless explicitly told to.
  • Omit obvious docstrs and comments. Add comments for non-obvious but easy-to-miss lines that are key to what the test is checking.

Example Test

Below is an example test, you'll notice the following:

  • Docstr is omitted since the purpose of the test is obvious
  • Comment about the county is added since it's the main point of the test
  • Newline between test setup, functionality under test, and assertions against result
  • api_app_url_path_for helper is used instead of hardcoded routes
from app.generated.fastapi_typed_routes import api_app_url_path_for
import json


def test_calculate_quote_unknown_county(client):
    payload = {
        "subscriber": {"age": 35, "gender": "M"},
        # fake county to ensure error is thrown
        "county": "NotACounty",
    }

    response = client.post(
        api_app_url_path_for("composite_quote"),
        json=payload,
    )

    assert_status(response, status.HTTP_422_UNPROCESSABLE_CONTENT)

File Structure

  • If there's more than a handful of tests in a folder, you should probably create subfolders.
  • File name should be related to the file or primary class / functionality the test is covering. Do not add a component to the test name that exists in the test file path.
    • Example: app/routes/unauthenticated/quote.py should be tests/routes/unauthenticated/quote_test.py
  • tests/routes/{unauthenticated,authenticated} and a handful of top-level test files for fastapi API route testing.
  • tests/integration/ for browser tests

Read the full file on GitHub · 56 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 56 lines · 0 tokens per session scan A d78533118d33

Subscribe to this mod's changes

pytest-tests is a cursor rule published in the GitHub repository iloveitaly/llm-ide-rules (13 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 571 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.