(self)
| 2531 | assert int(response.http_request.headers.get("x-stainless-retry-count")) == failures_before_success |
| 2532 | |
| 2533 | async def test_get_platform(self) -> None: |
| 2534 | platform = await asyncify(get_platform)() |
| 2535 | assert isinstance(platform, (str, OtherPlatform)) |
| 2536 | |
| 2537 | async def test_proxy_environment_variables(self, monkeypatch: pytest.MonkeyPatch) -> None: |
| 2538 | # Test that the proxy environment variables are set correctly |
nothing calls this directly
no test coverage detected