1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from __future__ import annotations
import os
import pytest
base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")
class TestRealtime:
parametrize = pytest.mark.parametrize("client", [False, True], indirect=True, ids=["loose", "strict"])
class TestAsyncRealtime:
parametrize = pytest.mark.parametrize(
"async_client", [False, True, {"http_client": "aiohttp"}], indirect=True, ids=["loose", "strict", "aiohttp"]
)
|