From fb0716bbad69daa313b14df24bda03cf965b2d75 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Mon, 25 Sep 2023 21:29:08 +1000 Subject: [PATCH 1/1] Don't do client transfer tests in parallel This should make them a lot less flaky. --- test/leecher-storage.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/leecher-storage.go b/test/leecher-storage.go index bfb3816d..a60f077a 100644 --- a/test/leecher-storage.go +++ b/test/leecher-storage.go @@ -91,8 +91,6 @@ type testClientTransferParams struct { // Creates a seeder and a leecher, and ensures the data transfers when a read // is attempted on the leecher. func testClientTransfer(t *testing.T, ps testClientTransferParams) { - t.Parallel() - prevGOMAXPROCS := runtime.GOMAXPROCS(ps.GOMAXPROCS) newGOMAXPROCS := prevGOMAXPROCS if ps.GOMAXPROCS > 0 { -- 2.44.0