From 6271a1076b89d3c1644c4f96a5990a41cc9c1946 Mon Sep 17 00:00:00 2001 From: Victor Skvortsov Date: Thu, 16 Apr 2026 15:50:54 +0500 Subject: [PATCH] Increase shim integration tests timeouts --- runner/internal/shim/docker_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runner/internal/shim/docker_test.go b/runner/internal/shim/docker_test.go index 18f8c31fc..df4aa1b99 100644 --- a/runner/internal/shim/docker_test.go +++ b/runner/internal/shim/docker_test.go @@ -29,7 +29,7 @@ func TestDocker_SSHServer(t *testing.T) { runnerDir: t.TempDir(), } - timeout := 180 // seconds + timeout := 300 // seconds ctx, cancel := context.WithTimeout(t.Context(), time.Duration(timeout)*time.Second) defer cancel() @@ -54,7 +54,7 @@ func TestDocker_ShmNoexecByDefault(t *testing.T) { runnerDir: t.TempDir(), } - timeout := 180 // seconds + timeout := 300 // seconds ctx, cancel := context.WithTimeout(t.Context(), time.Duration(timeout)*time.Second) defer cancel() @@ -79,7 +79,7 @@ func TestDocker_ShmExecIfSizeSpecified(t *testing.T) { runnerDir: t.TempDir(), } - timeout := 180 // seconds + timeout := 300 // seconds ctx, cancel := context.WithTimeout(t.Context(), time.Duration(timeout)*time.Second) defer cancel()