63d4e60542
* try postgres run * fix yaml * test with postgres * check with postgres * inkey_from * remove trio * add coverage * add coverage * more python testing * use @pytest_asyncio.fixture * remove unused imports * fix api_payment payment lookup * measure durations
10 lines
212 B
Python
10 lines
212 B
Python
import pytest
|
|
import pytest_asyncio
|
|
from tests.conftest import client
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_core_views_generic(client):
|
|
response = await client.get("/")
|
|
assert response.status_code == 200
|