1import pytest
2
3
4@pytest.fixture
5def xyzsomething(request):
6    return 42
7
8
9def test_func(some):
10    pass
11