PyTest - Fixtures
What will be printed when running this pytest code?
import pytest
@pytest.fixture
def data_resource():
print('Start')
yield 'info'
print('End')
def test_data(data_resource):
print(f'Using {data_resource}')