Skip to content

Commit ed3c492

Browse files
committed
fix tests
1 parent 1fdac41 commit ed3c492

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/smoketests/test_blueprints.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def _cleanup(client: Runloop) -> Iterator[None]: # pyright: ignore[reportUnused
3232
_blueprint_name = unique_name("bp")
3333

3434

35-
@pytest.mark.timeout(30)
35+
@pytest.mark.timeout(60)
3636
def test_create_blueprint_and_await_build(client: Runloop) -> None:
3737
global _blueprint_id
3838
created = client.blueprints.create_and_await_build_complete(
@@ -43,7 +43,7 @@ def test_create_blueprint_and_await_build(client: Runloop) -> None:
4343
_blueprint_id = created.id
4444

4545

46-
@pytest.mark.timeout(30)
46+
@pytest.mark.timeout(60)
4747
def test_start_devbox_from_base_blueprint_by_id(client: Runloop) -> None:
4848
assert _blueprint_id
4949
devbox = None
@@ -59,7 +59,7 @@ def test_start_devbox_from_base_blueprint_by_id(client: Runloop) -> None:
5959
client.devboxes.shutdown(devbox.id)
6060

6161

62-
@pytest.mark.timeout(30)
62+
@pytest.mark.timeout(60)
6363
def test_start_devbox_from_base_blueprint_by_name(client: Runloop) -> None:
6464
devbox = None
6565
try:

0 commit comments

Comments
 (0)