From 6fec1d5c129bf636a99d007ad62a343e9c374115 Mon Sep 17 00:00:00 2001 From: Mikhail Date: Tue, 12 May 2026 08:57:01 +0300 Subject: [PATCH] Add targeted anti-flake CI step for parallel flow window test --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f3dd730..8c8d715 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,6 +33,8 @@ jobs: - run: go test ./... - name: Anti-flake check (vpnruntime) run: go test ./internal/vpnruntime -count=20 + - name: Targeted anti-flake (parallel flow window) + run: go test ./internal/vpnruntime -run TestFabricClientPacketIngressParallelFlowWindowDoesNotBlockIndependentChannel -count=50 -timeout=60s - name: Concurrency check (vpnruntime race) run: go test -race ./internal/vpnruntime