From 0acfc27e00a6dc4a23a96948de121a50150d40a8 Mon Sep 17 00:00:00 2001 From: Robert Brennan Date: Sun, 4 May 2025 20:27:43 -0400 Subject: [PATCH] skip flaky runtime test (#8265) --- tests/runtime/test_runtime_resource.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/runtime/test_runtime_resource.py b/tests/runtime/test_runtime_resource.py index 950f37a3f3..78a59130f5 100644 --- a/tests/runtime/test_runtime_resource.py +++ b/tests/runtime/test_runtime_resource.py @@ -1,5 +1,6 @@ """Stress tests for the DockerRuntime, which connects to the ActionExecutor running in the sandbox.""" +import pytest from conftest import _close_test_runtime, _load_runtime from openhands.core.logger import openhands_logger as logger @@ -7,6 +8,7 @@ from openhands.events.action import CmdRunAction def test_stress_docker_runtime(temp_dir, runtime_cls, repeat=1): + pytest.skip('This test is flaky') runtime, config = _load_runtime( temp_dir, runtime_cls,