What is the difference if the fixture is inside or outside of Class(bla0, bla1)?
@pytest.fixtures()
def bla0()
...
class MyTest:
@pytest.fixtures()
def bla1()
...
@pytest.mark.usefixtures("bla0", "bla1")
def test ...
Just a matter of visibility... bla1
can only be used in test methods declared in MyTest
.