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