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.
npx agentmods add rules/iloveitaly/llm-ide-rules/pytest-testsgit clone --depth 1 https://github.com/iloveitaly/llm-ide-rulesWrote 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.
[](https://agentmods.dev/rules/iloveitaly/llm-ide-rules/pytest-tests)<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>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.
| Model | Per session | Once 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 |
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.
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 ofapp.models.*to generate any required database state- For example, to create and persist a
DistributionrecordDistributionFactory.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)
- For example, to create and persist a
- Use
fakerfactory 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_sessionfixture to fix the issue.- Note that when writing route tests a
db_sessionis not needed for the logic inside of the route.
- Note that when writing route tests a
- 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
countyis 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_forhelper 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.pyshould betests/routes/unauthenticated/quote_test.py
- Example:
tests/routes/{unauthenticated,authenticated}and a handful of top-level test files for fastapi API route testing.tests/integration/for browser tests
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.
- 4d ago First seen · 56 lines · 0 tokens per session scan A d78533118d33
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.
Other cursor rules, from other repositories
ai-kb
Use shared AI KB rules and context.
read-xlsx
Reading, writing, diffing, and repairing spreadsheets (.xlsx) for AI agents via the xfa MCP server.
codesynapse-cli
Use this rule to answer codebase architecture questions, trace dependencies, find callers/callees, calculate blast radius, and explore the code graph. Triggers on: "how does X work", "what handles Y", "where is Z defined", "explain the mechanism", "who calls", "blast radius", "shortest path", "trace request flow"…
cdv
How to drive the cdv MCP sidecar (observe, verify, remember, resume).
pn-tool-risk-policy
MCP tool risk tiers, HITL gates, and when to use approvalcheckpoint and gatelogappend. Use for safety reviews and workflow audits.
004_auto_context
Rules for requesting relevant memory context based on file types, locations, and current activity.