Skip to content

Commit

Permalink
Remove t.Parallel() for VM tests
Browse files Browse the repository at this point in the history
  • Loading branch information
saffronjam committed Jun 2, 2024
1 parent dadda8a commit 0af4995
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/e2e/v2/vms/routes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func TestMain(m *testing.M) {
}

func TestList(t *testing.T) {
t.Parallel()
//t.Parallel()

queries := []string{
"?page=1&pageSize=10",
Expand All @@ -38,7 +38,7 @@ func TestList(t *testing.T) {
}

func TestCreate(t *testing.T) {
t.Parallel()
//t.Parallel()

requestBody := body.VmCreate{
Name: e2e.GenName(),
Expand All @@ -60,7 +60,7 @@ func TestCreate(t *testing.T) {
}

func TestCreateWithInvalidBody(t *testing.T) {
t.Parallel()
//t.Parallel()

longName := body.VmCreate{
Name: "e2e-",
Expand Down Expand Up @@ -199,7 +199,7 @@ func TestCreateWithInvalidBody(t *testing.T) {
}

func TestUpdate(t *testing.T) {
t.Parallel()
//t.Parallel()

vm := v2.WithDefaultVM(t)

Expand Down Expand Up @@ -246,7 +246,7 @@ func TestUpdate(t *testing.T) {
}

func TestCreateShared(t *testing.T) {
t.Parallel()
//t.Parallel()

vm := v2.WithDefaultVM(t)
team := v2.WithTeam(t, body.TeamCreate{
Expand All @@ -273,7 +273,7 @@ func TestCreateShared(t *testing.T) {
}

func TestAction(t *testing.T) {
t.Parallel()
//t.Parallel()

actions := []string{"stop", "start", "restart"}
vm := v2.WithDefaultVM(t)
Expand All @@ -285,7 +285,7 @@ func TestAction(t *testing.T) {
}

func TestInvalidAction(t *testing.T) {
t.Parallel()
//t.Parallel()

actions := []string{"some command", "invalid"}

Expand Down

0 comments on commit 0af4995

Please sign in to comment.