Problem:
I have a fixture that takes about 5 minutes to instantiate. This fixture relies on a fixture from another package that I cannot touch. The time of the fixture can be drastically sped up depending on the state of a different (must faster instantiating) fixture. For example, this is the psuedo code of what I am looking to do:
JavaScript
x
8
1
@pytest.fixture()
2
def everyday_fixture(slow_fixture, fast_fixture):
3
if fast_fixture.is_usable():
4
yield fast_fixture
5
else:
6
slow_fixture.instantiate()
7
yield slow_fixture
8
Is this a feature of pytest? I have tried calling fixtures directly but this is also not allowed.
Advertisement
Answer
I would use the request
fixture for that.
JavaScript
1
9
1
@pytest.fixture
2
def everyday_fixture(request, fast_fixture):
3
if fast_fixture.is_usable():
4
yield fast_fixture
5
else:
6
slow_fixture = request.getfixturevalue("slow_fixture")
7
slow_fixture.instantiate()
8
yield slow_fixture
9