From 2dea508972f002c876e45395a2f43fad25a0823a Mon Sep 17 00:00:00 2001 From: Eli Fine Date: Fri, 24 Jul 2026 14:57:38 +0000 Subject: [PATCH 1/2] e2e --- AGENTS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/AGENTS.md b/AGENTS.md index bbcd203c..5e854947 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -24,6 +24,7 @@ This project is a Copier template used to generate other copier templates. It is ## Testing - Always run tests with an explicit path (e.g. uv run pytest tests/unit) — test runners discover all types (unit, integration, E2E...) by default. +- Never manually start services prior to running E2E tests. The test harness boots and tears down its own services (backend, frontend, supporting services) via session fixtures. - When iterating on a single test, run that test in isolation first and confirm it is in the expected state (red or green) before widening to the full suite. Use the most targeted invocation available: a specific test function for Python (e.g. `uv run pytest path/to/test.py::test_name --no-cov`) or a file path and name filter for TypeScript (e.g. `pnpm test-unit path/to/test.spec.ts -t "test name" --no-coverage`). Only run the full suite once the target test behaves as expected. - Test coverage requirements are usually at 100%, so when running a subset of tests, always disable test coverage to avoid the test run failing for insufficient coverage. - Avoid magic values in comparisons in tests in all languages (like ruff rule PLR2004 specifies). Note: `1` and `0` are not magic numbers (according to PLR2004) From 55661600278e4bd411087a02200dc791e480e7fd Mon Sep 17 00:00:00 2001 From: Eli Fine Date: Fri, 24 Jul 2026 14:58:18 +0000 Subject: [PATCH 2/2] faker --- extensions/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/context.py b/extensions/context.py index b801f7f7..1f7310b9 100644 --- a/extensions/context.py +++ b/extensions/context.py @@ -63,7 +63,7 @@ def hook( # noqa: PLR0915 # yes, this is a lot of statements, but it's all just context["pytest_asyncio_version"] = ">=1.4.0" context["pytest_timeout_version"] = ">=2.4.0" context["pytest_reserial_version"] = ">=0.6.1" - context["python_faker_version"] = ">=40.28.1" + context["python_faker_version"] = ">=40.35.0" ####### context["nuxt_ui_version"] = "^4.8.1" context["nuxt_version"] = "^4.4.6"