Fixtures

Definition

Fixtures are methods in Pytest that provide a fixed baseline for tests to run on top of.

A fixture can be used to setup preconditions for a test, provide data, or perform a tear-down after a test is finished.

# syntax
@pytest.fixture

Updated on