PyTest - Fixtures
What will be the output when running the following pytest code?
import pytest
@pytest.fixture(autouse=True)
def setup():
print('Setup running')
def test_one():
assert True
def test_two():
assert True
