mongo-python-driver/test/conftest.py
2023-10-19 11:56:22 -05:00

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()