PyTest - Fixtures
Find the problem in this fixture code:
@pytest.fixture
def fix():
print('Setup')
yield 'value'
print('Teardown')
yield 'extra'