Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions test/e2e/provisioning/all_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func TestOpenstackProvisioningE2E(t *testing.T) {
fmt.Sprintf("<< NETWORK_NAME >>=%s", osNetwork),
}

excludeSelector := &scenarioSelector{osName: []string{"sles"}}
excludeSelector := &scenarioSelector{osName: []string{"sles", "rhel"}}
runScenarios(t, excludeSelector, params, OSManifest, fmt.Sprintf("os-%s", *testRunIdentifier))
}

Expand Down Expand Up @@ -151,7 +151,7 @@ func TestAWSProvisioningE2E(t *testing.T) {
if len(awsKeyID) == 0 || len(awsSecret) == 0 {
t.Fatal("unable to run the test suite, AWS_E2E_TESTS_KEY_ID or AWS_E2E_TESTS_SECRET environment variables cannot be empty")
}
excludeSelector := &scenarioSelector{osName: []string{"sles"}}
excludeSelector := &scenarioSelector{osName: []string{"sles", "rhel"}}
// act
params := []string{fmt.Sprintf("<< AWS_ACCESS_KEY_ID >>=%s", awsKeyID),
fmt.Sprintf("<< AWS_SECRET_ACCESS_KEY >>=%s", awsSecret),
Expand Down Expand Up @@ -222,7 +222,7 @@ func TestAzureProvisioningE2E(t *testing.T) {
t.Fatal("unable to run the test suite, AZURE_TENANT_ID, AZURE_SUBSCRIPTION_ID, AZURE_CLIENT_ID and AZURE_CLIENT_SECRET environment variables cannot be empty")
}

excludeSelector := &scenarioSelector{osName: []string{"sles"}}
excludeSelector := &scenarioSelector{osName: []string{"sles", "rhel"}}
// act
params := []string{
fmt.Sprintf("<< AZURE_TENANT_ID >>=%s", azureTenantID),
Expand All @@ -246,7 +246,7 @@ func TestGCEProvisioningE2E(t *testing.T) {
}

// Act. GCE does not support CentOS.
excludeSelector := &scenarioSelector{osName: []string{"centos", "sles"}}
excludeSelector := &scenarioSelector{osName: []string{"centos", "sles", "rhel"}}
params := []string{
fmt.Sprintf("<< GOOGLE_SERVICE_ACCOUNT >>=%s", googleServiceAccount),
}
Expand Down Expand Up @@ -370,7 +370,7 @@ func getVSphereTestParams(t *testing.T) []string {
func TestVsphereProvisioningE2E(t *testing.T) {
t.Parallel()

excludeSelector := &scenarioSelector{osName: []string{"sles"}}
excludeSelector := &scenarioSelector{osName: []string{"sles", "rhel"}}

params := getVSphereTestParams(t)
runScenarios(t, excludeSelector, params, VSPhereManifest, fmt.Sprintf("vs-%s", *testRunIdentifier))
Expand Down