PyTest - Fixtures
You have two fixtures in
What happens when a test uses the
conftest.py:@pytest.fixture
def config():
return {'mode': 'test'}
@pytest.fixture
def client(config):
return Client(config['mode'])What happens when a test uses the
client fixture?