Skip to content

Commit 2797318

Browse files
fyZhang66claude
andcommitted
style: prettier-format testsprite-verify.skill.md
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 66793ab commit 2797318

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

skills/testsprite-verify.skill.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ server-side codegen on the CLI. Read the API surface that changed (OpenAPI, the
137137
route handler, request/response shapes) and write a pytest-style assertion script
138138
to a tempfile. **End the file by calling your `test_*` function(s)** — the runner
139139
executes the file top-to-bottom and does NOT auto-discover/collect test functions
140-
the way `pytest` does, so a test that is only *defined* (never called) silently
140+
the way `pytest` does, so a test that is only _defined_ (never called) silently
141141
passes regardless of its assertions:
142142

143143
```python
@@ -156,6 +156,7 @@ test_login_rejects_empty_password()
156156
**Execution environment (backend).** The code runs in a locked-down sandbox with
157157
only the Python **standard library + `requests` + `pytest` + `numpy` + `scipy`**
158158
(plus `requests`' own deps like `urllib3`). So:
159+
159160
- **Test the API over HTTP** with `requests` against the target URL — that's what a
160161
backend test verifies.
161162
- **Do NOT `import` the project's own source modules** (e.g. `from app.services import …`,

0 commit comments

Comments
 (0)