pytest-bdd steps only support fixture using @pytest.fixture, but do not support fixture generated by pytest_generate_tests function
leehin opened this issue · 0 comments
leehin commented
@given("test generated fixture")
def test_generated_fixture(normal_fixture, generated_fixture):
print(fixture)
print(generated_fixture)
return 1
@pytest.fixture
def normal_fixture():
return 1
defined pytest_generated_tests in conftest.py
def pytest_generate_tests(metafunc):
if "generated_fixture" in metafunc.fixturenames:
metafunc.parametrize("generated_fixture", [1, 2, 3])
will result in error
E fixture 'generated_fixture' not found