pytest

Libraries

The test runner in every Python repository, async mode on by default.

The de facto Python test framework, built around plain functions, assertion introspection and fixtures for shared setup.

How we use it

Runs in every Python repository here, against real dependencies rather than mocks where the dependency is a database. It earns its place by being unremarkable: the interesting decision is what is tested, not what runs it.

12

systems