PyTest - Fixtures
What is wrong with this pytest fixture usage?
import pytest
@pytest.fixture(scope='session')
def setup_api():
print('Setup API')
class TestAPI:
def test_one(self):
setup_api()
