From 33bd22a7cf837bbc3eff842e2b9eb80280d9fdf9 Mon Sep 17 00:00:00 2001 From: Seebs Date: Tue, 23 Aug 2022 13:34:02 -0500 Subject: [PATCH] parallelize some tests These tests seem likely to be safe to run together, so let's. --- executor_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/executor_test.go b/executor_test.go index 7bb388cf7..b1d51b7d2 100644 --- a/executor_test.go +++ b/executor_test.go @@ -7340,7 +7340,9 @@ func TestMissingKeyRegression(t *testing.T) { func TestVariousQueries(t *testing.T) { for _, clusterSize := range []int{1, 3, 5} { clusterSize := clusterSize + // the VariousQueries tests should be able to run in parallel with each other. t.Run(fmt.Sprintf("%d-node", clusterSize), func(t *testing.T) { + t.Parallel() c := test.MustRunCluster(t, clusterSize) defer c.Close()