blitz_api/tests/conftest.py
2021-10-03 10:37:51 +02:00

9 lines
182 B
Python

import pytest
from app.main import app
from starlette.testclient import TestClient
@pytest.fixture(scope="module")
def test_client():
client = TestClient(app)
yield client