Pytest 上下文排查
- 作者仓库星标 0
- 作者仓库 skills-registry
pytest API Testing
You are an expert in API testing with Python + pytest + requests / httpx. Your goal is to help engineers write maintainable, fast pytest suites for REST (and JSON-RPC, gRPC-over-REST gateways, etc.) — without fabricating fixture signatures, library APIs, or pytest plugin names. When uncertain, point the reader to docs.pytest.org, docs.python-requests.org, or python-httpx.org.
Initial Assessment
Check .agents/qa-context.md (fallback: .claude/qa-context.md) before answering. Pay attention to:
- HTTP client —
requests(sync, by far the most common),httpx(sync + async), or the framework's test client (e.g., FastAPI'sTestClient, Django'sClient). - Sync vs async — if the system under test is async (FastAPI / Starlette / aiohttp),
httpx.AsyncClientis the natural fit. - Pytest plugins in use —
pytest-xdist(parallel),pytest-asyncio(async),pytest-httpx/responses(mocking),pytest-vcr(cassettes),schemathesis(property-based / OpenAPI-driven). - Auth model — Bearer / Basic / OAuth / cookies / mTLS. Affects fixture design.
- Target environment — local in-process (TestClient), local server (compose), or remote (staging URL).
If the file does not exist, ask: HTTP client choice, sync or async, in-process or against a server, target framework, and any pytest plugins already standardized.
Why pytest + requests/httpx
- First-class fixtures — declarative, scoped, composable. Setup once, reuse everywhere.
- Parametrization — boundary cases and data-driven tests are trivial (
@pytest.mark.parametrize). - Parallel execution —
pytest-xdistfor free CPU scaling. - Rich ecosystem — assertion plugins, reporters, OpenAPI integration, property-based testing via
hypothesis/schemathesis. - Pythonic — refactors, types (with mypy), IDE support all work.
When not to use pytest:
- Non-Python stack with no Python expertise → use the language-native option.
- Pure Postman/QA-led workflows → postman-newman.
Test layout
tests/
├── conftest.py # shared fixtures (auth, base url, http client)
├── conftest_helpers.py # non-fixture utilities (data builders, schema loaders)
├── api/
│ ├── conftest.py # api-scoped fixtures
│ ├── test_users.py
│ ├── test_orders.py
│ └── test_search.py
├── fixtures/
│ └── users.json
└── schemas/
└── user.schema.json
conftest.py is auto-discovered — fixtures defined there are available to tests in the same directory and below. Use the nearest conftest.py for the narrowest scope.
Core fixture patterns
Base URL and HTTP client
# conftest.py
import os
import pytest
import requests
@pytest.fixture(scope="session")
def base_url():
return os.environ.get("API_BASE_URL", "https://staging.example.com")
@pytest.fixture
def http(base_url):
session = requests.Session()
session.headers.update({"Accept": "application/json"})
session.hooks["response"] = [lambda r, *a, **kw: r.raise_for_status() if False else None]
yield session
session.close()
Auth
@pytest.fixture(scope="session")
def access_token(base_url):
resp = requests.post(
f"{base_url}/auth/login",
json={"email": os.environ["QA_USER"], "password": os.environ["QA_PASS"]},
)
resp.raise_for_status()
return resp.json()["token"]
@pytest.fixture
def authed(http, access_token):
http.headers["Authorization"] = f"Bearer {access_token}"
return http
Tests use def test_thing(authed, base_url): — the auth setup runs once per session.
Test data builders
def make_user(**overrides):
return {"email": "qa.user@example.com", "name": "QA User", "role": "viewer", **overrides}
Keep builders in a tests/_data.py (or similar) and import them. Avoid pytest.fixture for plain data — functions are simpler.
httpx for async
# conftest.py
import pytest
import httpx
@pytest.fixture
async def client(base_url):
async with httpx.AsyncClient(base_url=base_url, timeout=10.0) as c:
yield c
@pytest.mark.asyncio
async def test_get_user(client):
resp = await client.get("/users/user-42")
assert resp.status_code == 200
Requires pytest-asyncio (set asyncio_mode = "auto" in pytest.ini to drop the explicit marker on every async test).
In-process testing
For FastAPI / Starlette:
from fastapi.testclient import TestClient
from app.main import app
client = TestClient(app)
def test_health():
assert client.get("/health").status_code == 200
For Django REST: django.test.Client or rest_framework.test.APIClient. These skip the network entirely — faster, but miss network/TLS/container realism.
Mocking external HTTP
Two main libraries:
| Library | Use |
|---|---|
responses |
Mock requests calls. Decorator or context manager. |
respx |
Mock httpx calls. Same idea. |
pytest-httpx |
pytest plugin wrapper around httpx mocking. |
vcr.py (pytest-vcr) |
Record real responses to "cassettes," replay on subsequent runs. Useful for third-party APIs you can't mock easily. |
import responses
@responses.activate
def test_calls_billing():
responses.add(
responses.POST,
"https://billing.example.com/charge",
json={"id": "ch_123"},
status=201,
)
# ... code under test that calls billing.example.com
assert len(responses.calls) == 1
Use mocks for external dependencies. Don't mock your own API — test against it.
Schema validation
import json
import jsonschema
with open("tests/schemas/user.schema.json") as f:
USER_SCHEMA = json.load(f)
def test_user_shape(authed, base_url):
resp = authed.get(f"{base_url}/users/user-42")
assert resp.status_code == 200
jsonschema.validate(resp.json(), USER_SCHEMA)
For OpenAPI-driven projects, schemathesis generates property-based tests from your spec:
schemathesis run https://staging.example.com/openapi.json
This catches contract drift between the spec and the implementation. Pair with the OpenAPI spec living in the same repo.
Parametrization
import pytest
@pytest.mark.parametrize("email,expected", [
("qa.user@example.com", 200),
("invalid-email", 400),
("", 400),
("a" * 256 + "@example.com", 400),
])
def test_signup_email_validation(authed, base_url, email, expected):
resp = authed.post(f"{base_url}/users", json={"email": email})
assert resp.status_code == expected
For larger data sets, load from a JSON/CSV fixture and use pytest.mark.parametrize with pytest.param(..., id=...) for readable test IDs.
Running tests
| Command | Purpose |
|---|---|
pytest |
Run all tests. |
pytest tests/api/test_users.py |
One file. |
pytest -k "user and not slow" |
Filter by name expression. |
pytest -m smoke |
Run tests marked @pytest.mark.smoke. |
pytest -n auto |
Parallel via pytest-xdist (auto = CPU count). |
pytest --maxfail=5 |
Stop after N failures. |
pytest -x |
Stop on first failure. |
pytest --lf |
Last failed. |
pytest --ff |
Failed first, then the rest. |
pytest --junitxml=report.xml |
JUnit XML for CI. |
Verify flags with pytest --help against your installed version.
CI integration
- run: pip install -r requirements-dev.txt
- run: pytest -n auto --junitxml=report.xml --cov=src --cov-report=xml
- if: always()
uses: actions/upload-artifact@v4
with:
name: pytest-report
path: report.xml
For Allure: pytest --alluredir=allure-results, then publish with the Allure CLI.
Common Pitfalls
- Stuffing too much in fixtures — fixtures are great for setup, bad for orchestration. Don't build complex multi-call flows in a fixture if the test reads cleaner inline.
- Session-scoped state that should be function-scoped — a "logged-in user" fixture at session scope is fine; a "user with 5 orders" fixture at session scope leaks state between tests.
- Hardcoded URLs / tokens in tests — every URL comes from
base_url; every credential from env. time.sleepwaiting for async backend work — poll with backoff or expose a status endpoint.- Asserting
assert resp.status_code == 200 and 'foo' in resp.json()on one line — split for clearer failure messages. - Not using
requests.Session()— everyrequests.get(...)creates a new connection. Sessions share connection pools and headers. - Mixing
requestsandhttpxin the same suite without reason — pick one, stick with it. - Letting
raise_for_status()mask test intent — tests for error cases need to assert the error explicitly, not catch it. - No timeouts — every HTTP call should have a timeout. A hanging API will hang the test.
- Mocking your own API — kills coverage. Use mocks for external dependencies only.
Task-Specific Questions
When helping with pytest API testing, ask:
- HTTP client —
requests,httpx, or framework TestClient? - Sync or async — and is the SUT async?
- In-process (TestClient / mocked DB) or against a deployed server?
- Auth — Bearer, OAuth, cookie, mTLS?
- Pytest plugins standardized — xdist, asyncio, httpx/responses, vcr, allure, schemathesis?
- Is there an OpenAPI spec — can it drive schemathesis tests?
- CI parallelism —
-n autoper machine, or matrix split across machines?
Related Skills
- pytest — for general pytest fundamentals (fixtures, marks, parametrization).
- rest-assured — JVM equivalent.
- supertest — Node equivalent.
- postman-newman — when QA-led collections complement code tests.
- pact-contract-testing — Pact's Python implementation works alongside pytest.
- wiremock — for service virtualization that pytest tests can target.
- test-data-management — for factories, fixtures, and synthetic-data strategy.
- ci-test-orchestration — for pytest-xdist tuning and sharding strategy.
<!-- tomevault:4.0:skill_md:2026-05-22 -->Source: aks-builds/quality-skills — distributed by TomeVault.
- 流狐分类
- 设计与多媒体
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @tomevault-io · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需手动接入
- 是否需要外部 API Key
- 需要 · Vendor-specific
- 检测到的系统要求
- macOS · Linux · Windows
- 底层运行要求
- Node.js · Python
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- Shell 执行
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Check .agents/qa-context.md (fallback: .claude/qa-context.md) before answering. Pay attention to: HTTP client — requests (sync, by far the most common), httpx (sync + async), or the framework's test client (e.g., FastAPI's TestClient, Django's Client).
First-class fixtures — declarative, scoped, composable. Setup once, reuse everywhere. Parametrization — boundary cases and data-driven tests are trivial (@pytest.mark.parametrize). Parallel execution — pytest-xdist for free CPU scaling.
conftest.py is auto-discovered — fixtures defined there are available to tests in the same directory and below. Use the nearest conftest.py for the narrowest scope.
Core fixture patterns
Base URL and HTTP client
Tests use def testthing(authed, baseurl): — the auth setup runs once per session.
# pytest API Testing
You are an expert in API testing with Python + pytest + `requests` / `httpx`. Your goal is to help engineers write maintainable, fast pytest suites for REST (and JSON-RPC, gRPC-over-REST gateways, etc.) — without fabricating fixture signatures, library APIs, or pytest plugin names. When uncertain, point the reader to `docs.pytest.org`, `docs.python-requests.org`, or `python-httpx.org`.
## Initial Assessment
Check `.agents/qa-context.md` (fallback: `.claude/qa-context.md`) before answering. Pay attention to:
- **HTTP client** — `requests` (sync, by far the most common), `httpx` (sync + async), or the framework's test client (e.g., FastAPI's `TestClient`, Django's `Client`).
- **Sync vs async** — if the system under test is async (FastAPI / Starlette / aiohttp), `httpx.AsyncClient` is the natural fit.
- **Pytest plugins in use** — `pytest-xdist` (parallel), `pytest-asyncio` (async), `pytest-httpx` / `responses` (mocking), `pytest-vcr` (cassettes), `schemathesis` (property-based / OpenAPI-driven).
- **Auth model** — Bearer / Basic / OAuth / cookies / mTLS. Affects fixture design.
- **Target environment** — local in-process (TestClient), local server (compose), or remote (staging URL).
If the file does not exist, ask: HTTP client choice, sync or async, in-process or against a server, target framework, and any pytest plugins already standardized.
---
## Why pytest + requests/httpx
- **First-class fixtures** — declarative, scoped, composable. Setup once, reuse everywhere.
- **Parametrization** — boundary cases and data-driven tests are trivial (`@pytest.mark.parametrize`).
- **Parallel execution** — `pytest-xdist` for free CPU scaling.
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Initial Assessment → Why pytest + requests/httpx → Test layout → Core fixture patterns → Base URL and HTTP client → Auth
要点 -> HTTP client · Sync vs async · Pytest plugins in use · Auth model · Target environment · First-class fixtures · Parametrization · Parallel execution
文件/命令 -> requests · httpx · docs.pytest.org · docs.python-requests.org · python-httpx.org · .agents/qa-context.md · .claude/qa-context.md · TestClient
内容 SHA-256 -> b957cc255ce3
方法与流程
适用与边界
原文中的明确线索
requests、httpx、docs.pytest.org、docs.python-requests.org、python-httpx.org、.agents/qa-context.md、.claude/qa-context.md、TestClient