From 5498f854e44df5c8f0804ff4f0747c0dec3caad5 Mon Sep 17 00:00:00 2001 From: Dmytro Vovk Date: Wed, 30 Oct 2024 03:07:16 +0000 Subject: [PATCH] integration tests: added parallel execution (#12527) Added parallel execution for integration tests which is speedup them by 25% in average --- tests/init_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/init_test.go b/tests/init_test.go index a3a28f110f1..574894c6ef1 100644 --- a/tests/init_test.go +++ b/tests/init_test.go @@ -281,6 +281,7 @@ func sortedMapKeys(m reflect.Value) []string { } func runTestFunc(runTest interface{}, t *testing.T, name string, m reflect.Value, key string) { + t.Parallel() reflect.ValueOf(runTest).Call([]reflect.Value{ reflect.ValueOf(t), reflect.ValueOf(name),