Pytest parametrized fixture
Sometimes we would like to pass some parameters to the fixture. We can do this with one or more parameters.
examples/pytest/test_parametrized_fixture.py
import os import pathlib import time import pytest @pytest.fixture(autouse = True, scope="function", params=["name"]) def generate(name): print(f"Fixture before test using {name}") yield print(f"Fixture after test using {name}") @pytest.mark.parametrize("name", ["apple"]) def test_with_param(name): print(f"Test using {name}") @pytest.mark.parametrize("name", ["banana"]) def test_without_param(): print(f"Test not using param")
Fixture before test using apple Test using apple Fixture after test using apple Fixture before test using banana Test not using param Fixture after test using banana