mirror of
https://github.com/django-components/django-components.git
synced 2025-07-07 17:34:59 +00:00

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
9 lines
248 B
Python
9 lines
248 B
Python
import pytest
|
|
|
|
from tests.e2e.utils import run_django_dev_server
|
|
|
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
def django_dev_server():
|
|
"""Fixture to run Django development server in the background."""
|
|
yield from run_django_dev_server()
|