[#321] engine/test: Execute tests in parallel

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2023-05-05 16:17:29 +03:00 committed by Evgenii Stratonikov
parent 4578d00619
commit 945454f60c
5 changed files with 25 additions and 1 deletions

View file

@ -17,6 +17,8 @@ import (
)
func TestRebalance(t *testing.T) {
t.Parallel()
te := newEngineWithErrorThreshold(t, "", 0)
const (
@ -101,6 +103,8 @@ loop:
}
func TestRebalanceSingleThread(t *testing.T) {
t.Parallel()
te := newEngineWithErrorThreshold(t, "", 0)
obj := testutil.GenerateObjectWithCID(cidtest.ID())