13 lines
236 B
Python
13 lines
236 B
Python
import pytest
|
|
from fastapi.testclient import TestClient
|
|
|
|
from app.config import get_settings
|
|
from app.main import app
|
|
|
|
|
|
@pytest.fixture
|
|
def client():
|
|
get_settings.cache_clear()
|
|
with TestClient(app) as value:
|
|
yield value
|