Skip to content

Commit

Permalink
Enable all services in Functional tests
Browse files Browse the repository at this point in the history
This change enables all of the services in the functional tests.
This ensures that each service's code path is executed and should catch any potential
issues before services are enabled in integration testing.

Signed-off-by: Brendan Shephard <[email protected]>
  • Loading branch information
bshephar committed Jun 7, 2024
1 parent 3b8e72b commit b1ca4c4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tests/functional/base_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -367,38 +367,38 @@ func GetDefaultOpenStackControlPlaneSpec() map[string]interface{} {
"template": keystoneTemplate,
},
"placement": map[string]interface{}{
"enabled": false,
"enabled": true,
},
"glance": map[string]interface{}{
"enabled": false,
"enabled": true,
},
"horizon": map[string]interface{}{
"enabled": true,
},
"cinder": map[string]interface{}{
"enabled": false,
"enabled": true,
},
"ovn": map[string]interface{}{
"enabled": false,
"enabled": true,
},
"neutron": map[string]interface{}{
"enabled": false,
"enabled": true,
},
"swift": map[string]interface{}{
"enabled": false,
"enabled": true,
},
"nova": map[string]interface{}{
"enabled": false,
"enabled": true,
},
"ironic": map[string]interface{}{
"enabled": false,
"enabled": true,
"template": ironicTemplate,
},
"designate": map[string]interface{}{
"enabled": false,
"enabled": true,
},
"barbican": map[string]interface{}{
"enabled": false,
"enabled": true,
},
}
}
Expand Down

0 comments on commit b1ca4c4

Please sign in to comment.