--- description: Run DevPlace tests - the sanctioned explicit-ask path. Run a tier, a file, or a single test with the correct flags. The agents never run tests themselves; this command is how you ask. argument-hint: [unit|api|e2e|all|] allowed-tools: Bash(make test*), Bash(python -m pytest *), Read --- Run the requested tests: **$ARGUMENTS** Mapping: - `unit` -> `make test-unit` - `api` -> `make test-api` - `e2e` -> `make test-e2e` - `all` or empty -> `make test` - a path like `tests/api/posts/create.py::test_x` -> `python -m pytest -v --tb=line -x` Tests run serially on port 10501 with a tempfile SQLite DB and `DEVPLACE_DISABLE_SERVICES=1`. This command is the one sanctioned way to run them (the subagents and workflows never do). Report results clearly. On a failure, show the relevant output, and if a browser (e2e) test failed, point me at the screenshot under `/tmp/devplace_test_screenshots/`. Never weaken a test to make it pass; if a test reveals a real bug, report it - do not edit the test.