From 4db6408e0b94d7adb55a5aaf0e362e1e1b408e0b Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 6 Jul 2025 21:32:40 +0300 Subject: [PATCH] ci: mark tcp_test.v and unix_socket_test.v as flaky (they still fail sporadically on the CI, although very rarely now) --- vlib/net/tcp_test.v | 1 + vlib/net/unix/unix_socket_test.v | 2 ++ 2 files changed, 3 insertions(+) diff --git a/vlib/net/tcp_test.v b/vlib/net/tcp_test.v index 15eaa7fa28..1505984149 100644 --- a/vlib/net/tcp_test.v +++ b/vlib/net/tcp_test.v @@ -1,3 +1,4 @@ +// vtest flaky: true // vtest retry: 5 import net diff --git a/vlib/net/unix/unix_socket_test.v b/vlib/net/unix/unix_socket_test.v index a896cb588d..3b1c08b8db 100644 --- a/vlib/net/unix/unix_socket_test.v +++ b/vlib/net/unix/unix_socket_test.v @@ -1,3 +1,5 @@ +// vtest flaky: true +// vtest retry: 3 import os import log import time