@@ -117,7 +117,7 @@ func TestOpenstackProvisioningE2E(t *testing.T) {
117117 fmt .Sprintf ("<< NETWORK_NAME >>=%s" , osNetwork ),
118118 }
119119
120- excludeSelector := & scenarioSelector {osName : []string {"sles" }}
120+ excludeSelector := & scenarioSelector {osName : []string {"sles" , "rhel" }}
121121 runScenarios (t , excludeSelector , params , OSManifest , fmt .Sprintf ("os-%s" , * testRunIdentifier ))
122122}
123123
@@ -151,7 +151,7 @@ func TestAWSProvisioningE2E(t *testing.T) {
151151 if len (awsKeyID ) == 0 || len (awsSecret ) == 0 {
152152 t .Fatal ("unable to run the test suite, AWS_E2E_TESTS_KEY_ID or AWS_E2E_TESTS_SECRET environment variables cannot be empty" )
153153 }
154- excludeSelector := & scenarioSelector {osName : []string {"sles" }}
154+ excludeSelector := & scenarioSelector {osName : []string {"sles" , "rhel" }}
155155 // act
156156 params := []string {fmt .Sprintf ("<< AWS_ACCESS_KEY_ID >>=%s" , awsKeyID ),
157157 fmt .Sprintf ("<< AWS_SECRET_ACCESS_KEY >>=%s" , awsSecret ),
@@ -222,7 +222,7 @@ func TestAzureProvisioningE2E(t *testing.T) {
222222 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" )
223223 }
224224
225- excludeSelector := & scenarioSelector {osName : []string {"sles" }}
225+ excludeSelector := & scenarioSelector {osName : []string {"sles" , "rhel" }}
226226 // act
227227 params := []string {
228228 fmt .Sprintf ("<< AZURE_TENANT_ID >>=%s" , azureTenantID ),
@@ -246,7 +246,7 @@ func TestGCEProvisioningE2E(t *testing.T) {
246246 }
247247
248248 // Act. GCE does not support CentOS.
249- excludeSelector := & scenarioSelector {osName : []string {"centos" , "sles" }}
249+ excludeSelector := & scenarioSelector {osName : []string {"centos" , "sles" , "rhel" }}
250250 params := []string {
251251 fmt .Sprintf ("<< GOOGLE_SERVICE_ACCOUNT >>=%s" , googleServiceAccount ),
252252 }
@@ -370,7 +370,7 @@ func getVSphereTestParams(t *testing.T) []string {
370370func TestVsphereProvisioningE2E (t * testing.T ) {
371371 t .Parallel ()
372372
373- excludeSelector := & scenarioSelector {osName : []string {"sles" }}
373+ excludeSelector := & scenarioSelector {osName : []string {"sles" , "rhel" }}
374374
375375 params := getVSphereTestParams (t )
376376 runScenarios (t , excludeSelector , params , VSPhereManifest , fmt .Sprintf ("vs-%s" , * testRunIdentifier ))
0 commit comments