Pytest mastery
Structure pytest suites with fixtures, parametrize, and markers so tests stay fast, isolated, and readable. Use when writing Python tests or untangling a slow, fixture-heavy suite.From its SKILL.md
npx -y skills add Amey-Thakur/AI-SKILLS --skill pytest-masteryAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.3 KB, 515 tokens by cl100k_base, as published. Nobody here has run it
Pytest mastery
Fixtures are dependency injection for tests: each test states what it needs, pytest builds it, and scope controls how much is shared.
Method
- Scope fixtures by cost, not convenience. Default
functionscope for anything mutable;sessionscope only for expensive immutable resources (a container, a compiled artifact). A session-scoped mutable fixture is the classic source of order-dependent flakiness. - Layer conftest.py by directory. Repo-root conftest holds universal fixtures; each package's tests get their own conftest for local ones. Never import fixtures across test files; discovery through conftest is the mechanism.
- Parametrize instead of copy-pasting.
@pytest.mark.parametrize("raw,expected", CASES, ids=str)turns a table of cases into individual test items with readable names. Stack two parametrize decorators to get the cross product. - Use markers as a vocabulary, registered in pyproject.
slow,integration,requires_gpu; select with-m "not slow"locally and run everything in CI. Unregistered markers are typos waiting to pass silently; set--strict-markers. - Prefer tmp_path, monkeypatch, and capsys over hand-rolled setup.
tmp_pathgives an isolated directory per test;monkeypatch.setenvand.setattrundo themselves;capsysasserts on output without redirecting streams manually. - Assert one behavior per test, plainly. Bare
assertwith pytest's rewriting gives rich diffs;pytest.raises(ValueError, match="port")pins the error and its message. If a test needs a comment to explain what it checks, its name is wrong. - Keep the suite fast enough to run on every save. Measure with
--durations=10; push anything over a second behind aslowmarker.pytest -x --ff(fail fast, failed first) is the debugging loop.
Boundaries
- Do not mock what you own; restructure so the seam is a real interface. Mock only true externals (network, clock, randomness).
- Fixture chains deeper than three levels hide the arrange step; inline the setup or build an explicit builder function.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.