I we have this:
import pytest
class TestMyClass:
@pytest.fixture
def my_fixture(self): ...
def test_something(self, my_fixture): ...
Executing PytrizeJumpFixture over my_fixture in test_something jumps to fixture definition but col 0.
Expected
Should jump to the d in def my_fixture(self).
I we have this:
Executing
PytrizeJumpFixtureovermy_fixtureintest_somethingjumps to fixture definition but col 0.Expected
Should jump to the
dindef my_fixture(self).