mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 15:13:13 +07:00
Merge-request: IJ-MR-173095 Merged-by: Morgan Bartholomew <morgan.bartholomew@jetbrains.com> GitOrigin-RevId: f4a8479b755d71cd2932176acce98f4d2f8aaba5
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():
|
|
...
|