From 3faaac4da7b8e4ab100e13de660a00bddaf21589 Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Fri, 25 Jul 2025 13:56:35 +1000 Subject: [PATCH] chore: run machine tests in parallel --- test/e2e/machine_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/e2e/machine_test.go b/test/e2e/machine_test.go index 5595c81e..62184fe8 100644 --- a/test/e2e/machine_test.go +++ b/test/e2e/machine_test.go @@ -13,6 +13,8 @@ import ( ) func TestMachineRename(t *testing.T) { + t.Parallel() + name := "ucind-test.machine-rename" ctx := context.Background() c, _ := createTestCluster(t, name, ucind.CreateClusterOptions{Machines: 3}, true) @@ -205,6 +207,8 @@ func TestMachineRename(t *testing.T) { } func TestUpdateMachine(t *testing.T) { + t.Parallel() + name := "ucind-test.machine-update" ctx := context.Background() c, _ := createTestCluster(t, name, ucind.CreateClusterOptions{Machines: 3}, true)