mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-13 15:52:01 +07:00
Merge-request: IJ-MR-173095 Merged-by: Morgan Bartholomew <morgan.bartholomew@jetbrains.com> (cherry picked from commit f4a8479b755d71cd2932176acce98f4d2f8aaba5) IJ-MR-173095 GitOrigin-RevId: 382ee0e32c3a819d28fda7f5ef5db575517474ff
14 lines
183 B
Python
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():
|
|
...
|