Skip to content

Commit 9d8cab6

Browse files
committed
cp
1 parent ed3c492 commit 9d8cab6

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

tests/smoketests/test_blueprints.py

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

3434

35-
@pytest.mark.timeout(60)
3635
def test_create_blueprint_and_await_build(client: Runloop) -> None:
3736
global _blueprint_id
3837
created = client.blueprints.create_and_await_build_complete(
@@ -43,7 +42,6 @@ def test_create_blueprint_and_await_build(client: Runloop) -> None:
4342
_blueprint_id = created.id
4443

4544

46-
@pytest.mark.timeout(60)
4745
def test_start_devbox_from_base_blueprint_by_id(client: Runloop) -> None:
4846
assert _blueprint_id
4947
devbox = None
@@ -59,7 +57,6 @@ def test_start_devbox_from_base_blueprint_by_id(client: Runloop) -> None:
5957
client.devboxes.shutdown(devbox.id)
6058

6159

62-
@pytest.mark.timeout(60)
6360
def test_start_devbox_from_base_blueprint_by_name(client: Runloop) -> None:
6461
devbox = None
6562
try:
@@ -74,7 +71,6 @@ def test_start_devbox_from_base_blueprint_by_name(client: Runloop) -> None:
7471
client.devboxes.shutdown(devbox.id)
7572

7673

77-
@pytest.mark.timeout(60)
7874
@pytest.mark.skipif(
7975
os.getenv("RUN_SMOKETESTS") != "1",
8076
reason="Skip blueprint secrets test in local testing (requires RUN_SMOKETESTS=1)",

tests/smoketests/test_devboxes.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ def test_create_devbox(client: Runloop) -> None:
3737
client.devboxes.shutdown(created.id)
3838

3939

40-
@pytest.mark.timeout(30)
4140
def test_await_running_create_and_await_running(client: Runloop) -> None:
4241
global _devbox_id
4342
created = client.devboxes.create_and_await_running(

0 commit comments

Comments
 (0)