@@ -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 (60 )
35+ @pytest .mark .timeout (120 ) # 2 minutes
3636def 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 (60 )
46+ @pytest .mark .timeout (120 )
4747def 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 (60 )
62+ @pytest .mark .timeout (120 )
6363def test_start_devbox_from_base_blueprint_by_name (client : Runloop ) -> None :
6464 devbox = None
6565 try :
@@ -74,7 +74,7 @@ def test_start_devbox_from_base_blueprint_by_name(client: Runloop) -> None:
7474 client .devboxes .shutdown (devbox .id )
7575
7676
77- @pytest .mark .timeout (60 )
77+ @pytest .mark .timeout (120 )
7878@pytest .mark .skipif (
7979 os .getenv ("RUN_SMOKETESTS" ) != "1" ,
8080 reason = "Skip blueprint secrets test in local testing (requires RUN_SMOKETESTS=1)" ,
0 commit comments