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