You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
180 B
Python
11 lines
180 B
Python
4 years ago
|
import pytest
|
||
|
from starlette.testclient import TestClient
|
||
|
|
||
|
from app.main import app
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope="module")
|
||
|
def test_app():
|
||
|
client = TestClient(app)
|
||
|
yield client
|