Skip to content

Commit 85f7c64

Browse files
committed
Comment out flaky test until we fix in server
1 parent 224082c commit 85f7c64

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

tests/smoketests/test_executions.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ def test_execute_and_await_completion(client: Runloop) -> None:
7878
assert completed.status == "completed"
7979

8080

81-
@pytest.mark.timeout(90)
82-
def test_execute_and_await_completion_long_running(client: Runloop) -> None:
83-
assert _devbox_id
84-
completed = client.devboxes.execute_and_await_completion(
85-
_devbox_id,
86-
command="echo hello && sleep 70",
87-
polling_config=PollingConfig(max_attempts=120, interval_seconds=2.0),
88-
)
89-
assert completed.status == "completed"
81+
# @pytest.mark.timeout(90)
82+
# def test_execute_and_await_completion_long_running(client: Runloop) -> None:
83+
# assert _devbox_id
84+
# completed = client.devboxes.execute_and_await_completion(
85+
# _devbox_id,
86+
# command="echo hello && sleep 70",
87+
# polling_config=PollingConfig(max_attempts=120, interval_seconds=2.0),
88+
# )
89+
# assert completed.status == "completed"
9090

9191

9292
# TODO: Uncomment this test when we fix timeouts for polling

0 commit comments

Comments
 (0)