Skip to content
Advertisement

How to conditionally skip instantiation of fixture in pytest?

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

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
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement