llm-ide-rules pytest-tests.instructions.md

llm-ide-rules pytest-tests.instructions.md is an instructions file for GitHub Copilot from iloveitaly/llm-ide-rules. It costs 561 tokens per session, scanned A, original, MIT.

A set of pytest testing instructions for Python applications, including how to create database records and test routes and Stripe payments.

In plain words
What is it for?
Use it when writing or updating pytest tests, creating test factories, handling database sessions, generating sample values, or testing Stripe in its sandbox.
Why use it?
It gives tests a consistent way to prepare data and encourages testing real application behavior instead of replacing parts with mocks.

Instructions file for GitHub Copilot

Written for GitHub Copilot: a Copilot chat mode or prompt.

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 instructions/iloveitaly/llm-ide-rules/pytest-tests
Clone the repo
git clone --depth 1 https://github.com/iloveitaly/llm-ide-rules

Made for: GitHub Copilot.

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 llm-ide-rules pytest-tests.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/iloveitaly/llm-ide-rules/pytest-tests.svg)](https://agentmods.dev/instructions/iloveitaly/llm-ide-rules/pytest-tests)
Your own site
<a href="https://agentmods.dev/instructions/iloveitaly/llm-ide-rules/pytest-tests"><img src="https://agentmods.dev/badge/instructions/iloveitaly/llm-ide-rules/pytest-tests.svg" alt="Measured on agentmods" height="20"></a>
Per session 561 This file is loaded in full into every session.
When invoked 561 The same file — it is already loaded in full.
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.1 $0.00561 $0.00561
Opus 5 $0.00280 $0.00280
Sonnet 5 $0.00112 $0.00112
Haiku 4.5 $0.00056 $0.00056

Measured 6d ago against content hash 15544eeb580b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

llm-ide-rules pytest-tests.instructions.md 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 6d 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.

.github/instructions/pytest-tests.instructions.md · 54 lines

How it starts

The opening of the file, as written. The whole thing — 54 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 · 54 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. 6d ago First seen · 54 lines · 561 tokens per session scan A 15544eeb580b

Subscribe to this mod's changes

llm-ide-rules pytest-tests.instructions.md is an instructions file published in the GitHub repository iloveitaly/llm-ide-rules (13 stars, last pushed 5d ago), licensed MIT. It adds 561 tokens to every session, about $0.0028 per session on Opus 5. 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.

Related

Other instructions, from other repositories

mcp-prompt-optimizer CLAUDE.md

Instructions for yusufkucukates/mcp-prompt-optimizer, covering claude.md — project instructions for claude code, project purpose, tech stack, project structure and how to run locally.

yusufkucukates/mcp-prompt-optimizer · 1,595 tokens

prompt-template-engine CLAUDE.md

Instructions for AdamManuel-dev/prompt-template-engine, a project described as: Automated Prompt Optimization System for Cursor, Claude Code, VS Code, and anything else.

AdamManuel-dev/prompt-template-engine · not measured

docs-mcp-server AGENTS.md

Instructions for arabold/docs-mcp-server, covering agent instructions for docs-mcp-server, repository context, development workflow, key commands and git workflow.

arabold/docs-mcp-server · 2,284 tokens

ai-prompts AGENTS.md

Instructions for liatrio-labs/ai-prompts, covering ai agent instructions, context marker, local skill scripts, standard workflow and initialize.

liatrio-labs/ai-prompts · 283 tokens

ultra-max-token-burner AGENTS.md

Instructions for floytra-dev/ultra-max-token-burner: When the user asks to expand, operationalize, professionalize, govern, validate, or make a prompt more manager-visible, use the Ultra Max Token Burner workflow in SKILL.md.

floytra-dev/ultra-max-token-burner · 171 tokens

compact_prompt CLAUDE.md

Claude Code instructions for gtkcyber/compact_prompt, covering claude.md, commands, install for development, runnable tour of every strategy and interactive demo (prompt + files & skills tabs).

gtkcyber/compact_prompt · 2,476 tokens