PyTest - Fixtures
What will be the output count of
setup_env calls in this pytest code?import pytest
@pytest.fixture(scope='function')
def setup_env():
print('Setup Env')
class TestExample:
def test_a(self, setup_env):
pass
def test_b(self, setup_env):
pass
