18 lines
307 B
Python
18 lines
307 B
Python
from __future__ import annotations
|
|
|
|
from test import pytest_conf, setup, teardown
|
|
|
|
import pytest
|
|
|
|
_IS_SYNC = True
|
|
|
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
def test_setup_and_teardown():
|
|
setup()
|
|
yield
|
|
teardown()
|
|
|
|
|
|
pytest_collection_modifyitems = pytest_conf.pytest_collection_modifyitems
|