mongo-python-driver/test/conftest.py

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