From d4ef96f17c2b667f2f29d0e9a2c356204d8df1a8 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 31 Jul 2026 10:09:54 +0000 Subject: [PATCH] no-mistakes(document): docs: add pytest suite to AGENTS.md structure and commands --- AGENTS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 61805f1..563eacd 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -22,6 +22,7 @@ app/ ├── services/ # Business logic (auth, seed, ticket, sla) └── routers/ # FastAPI route handlers alembic/ # Database migrations +tests/ # pytest suite; conftest.py swaps DATABASE_URL to a temp SQLite uploads/ # Photo uploads (created at runtime) ``` @@ -29,6 +30,7 @@ uploads/ # Photo uploads (created at runtime) - `alembic upgrade head` — apply migrations - `alembic revision --autogenerate -m "msg"` — new migration +- `pytest` — run the API test suite (tests/; pagination contract anchored in tests/test_tickets_pagination.py) ## Seed data