Files
openide/python/testData/testCompletion/test_usefixtures_completion_module.py
chbndrhnns 83aac7f547 [python] PY-54771 Suggest fixtures in @pytest.mark.usefixtures("")
Merge-request: IJ-MR-173095
Merged-by: Morgan Bartholomew <morgan.bartholomew@jetbrains.com>

(cherry picked from commit f4a8479b755d71cd2932176acce98f4d2f8aaba5)

IJ-MR-173095

GitOrigin-RevId: 382ee0e32c3a819d28fda7f5ef5db575517474ff
2025-09-17 02:03:24 +00:00

14 lines
183 B
Python

import pytest
@pytest.fixture
def my_fixture():
return True
# Module-level usefixtures via pytestmark
pytestmark = pytest.mark.usefixtures("<caret>")
def test_abc():
...