fix: ty compliant & issues from change to mapped columns
This commit is contained in:
parent
55927946c7
commit
58e7ae6c5c
31 changed files with 271 additions and 254 deletions
|
|
@ -24,9 +24,7 @@ async def test_get_services_success(default_client: AsyncClient):
|
|||
assert data["services"][0]["name"] == "Test Service"
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"query, expected_status", generate_query_and_status(["org_id"])
|
||||
)
|
||||
@pytest.mark.parametrize("query, expected_status", generate_query_and_status(["org_id"]))
|
||||
@pytest.mark.anyio
|
||||
async def test_get_services_status_checks(
|
||||
default_client: AsyncClient, query: str, expected_status: int
|
||||
|
|
@ -49,9 +47,7 @@ async def test_post_service_success(default_client: AsyncClient):
|
|||
assert isinstance(data["service"]["api_key"], str)
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"body, expected_status", generate_body_and_status({"name": "str"})
|
||||
)
|
||||
@pytest.mark.parametrize("body, expected_status", generate_body_and_status({"name": "str"}))
|
||||
@pytest.mark.anyio
|
||||
async def test_post_service_status_checks(
|
||||
default_client: AsyncClient, body: dict[str, str], expected_status: int
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue