teilchensammler/collector/conftest.py

13 lines
239 B
Python
Raw Normal View History

import pytest
from django.test import Client
@pytest.fixture(autouse=True)
def enable_db_access_for_all_tests(db):
pass
@pytest.fixture(scope="session", name="session")
def fixture_longlived_client() -> Client:
return Client()