Skip to content

Commit e949fff

Browse files
feat: Revert- Changing nutanix provider e2e as serial
This reverts commit 2ec690c.
1 parent 8511d39 commit e949fff

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

test/e2e/quick_start_test.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,11 @@ import (
3131
var _ = Describe("Quick start", func() {
3232
for _, provider := range []string{"Docker", "AWS", "Nutanix"} {
3333
// Add any provider specific decorators here.
34-
// Docker and Nutanix require Serial decorator to ensure the machine running the e2e tests
34+
// Currently, only Docker requires Serial decorator to ensure the machine running the Docker e2e tests
3535
// doesn't have resources exhausted and lead to flaky tests.
36-
// This prevents parallel execution which can cause IP address pool exhaustion,
37-
// VM capacity limits, and Prism Central API rate limiting.
36+
// Other provider tests will run in parallel.
3837
var providerSpecificDecorators []interface{}
39-
if provider == "Docker" || provider == "Nutanix" {
38+
if provider == "Docker" {
4039
providerSpecificDecorators = append(providerSpecificDecorators, Serial)
4140
}
4241

test/e2e/self_hosted_test.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,11 @@ import (
2525
var _ = Describe("Self-hosted", Serial, func() {
2626
for _, provider := range []string{"Docker", "Nutanix"} {
2727
// Add any provider specific decorators here.
28-
// Docker and Nutanix require Serial decorator to ensure the machine running the e2e tests
28+
// Currently, only Docker requires Serial decorator to ensure the machine running the Docker e2e tests
2929
// doesn't have resources exhausted and lead to flaky tests.
30-
// This prevents parallel execution which can cause IP address pool exhaustion,
31-
// VM capacity limits, and Prism Central API rate limiting.
30+
// Other provider tests will run in parallel.
3231
var providerSpecificDecorators []interface{}
33-
if provider == "Docker" || provider == "Nutanix" {
32+
if provider == "Docker" {
3433
providerSpecificDecorators = append(providerSpecificDecorators, Serial)
3534
}
3635
Context(provider, Label("provider:"+provider), providerSpecificDecorators, func() {

0 commit comments

Comments
 (0)