Skip to content

Commit 6495c5c

Browse files
committed
increase timeout for async sdk client smoke tests
1 parent e1815ff commit 6495c5c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/smoketests/sdk/test_async_sdk.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88

99
pytestmark = [pytest.mark.smoketest]
1010

11-
FIVE_SECOND_TIMEOUT = 5
11+
THIRTY_SECOND_TIMEOUT = 30
1212

1313

1414
class TestAsyncRunloopSDKInitialization:
1515
"""Test AsyncRunloopSDK client initialization and structure."""
1616

17-
@pytest.mark.timeout(FIVE_SECOND_TIMEOUT)
17+
@pytest.mark.timeout(THIRTY_SECOND_TIMEOUT)
1818
async def test_sdk_instance_creation(self, async_sdk_client: AsyncRunloopSDK) -> None:
1919
"""Test that async SDK instance is created successfully with all client properties."""
2020
assert async_sdk_client is not None
@@ -23,7 +23,7 @@ async def test_sdk_instance_creation(self, async_sdk_client: AsyncRunloopSDK) ->
2323
assert async_sdk_client.snapshot is not None
2424
assert async_sdk_client.storage_object is not None
2525

26-
@pytest.mark.timeout(FIVE_SECOND_TIMEOUT)
26+
@pytest.mark.timeout(THIRTY_SECOND_TIMEOUT)
2727
async def test_legacy_api_access(self, async_sdk_client: AsyncRunloopSDK) -> None:
2828
"""Test that legacy API client is accessible through sdk.api."""
2929
assert async_sdk_client.api is not None

0 commit comments

Comments
 (0)