From 960cd7d6caf628e5e3db0e518f1ca81f5da7df67 Mon Sep 17 00:00:00 2001 From: Moath Qasim Date: Wed, 25 Mar 2020 16:13:07 +0100 Subject: [PATCH] disable rhel e2e tests except for kubevirt Signed-off-by: Moath Qasim Signed-off-by: Moath Qasim --- test/e2e/provisioning/all_e2e_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/e2e/provisioning/all_e2e_test.go b/test/e2e/provisioning/all_e2e_test.go index 561fe11ce..29b146fcb 100644 --- a/test/e2e/provisioning/all_e2e_test.go +++ b/test/e2e/provisioning/all_e2e_test.go @@ -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)) } @@ -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), @@ -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), @@ -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), } @@ -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))