tests/acceptance: disable test on aggregates

Change-Id: I7b7b2fedd00f812224add834fb2d2989861387b4
Related-Bug: #1845616
This commit is contained in:
Emilien Macchi 2019-09-27 11:08:36 -04:00
parent d78c104fe6
commit 8fd8d56c3b

@ -15,13 +15,6 @@ describe 'basic nova' do
include ::openstack_integration::placement
include ::openstack_integration::nova
nova_aggregate { 'test_aggregate':
ensure => present,
availability_zone => 'zone1',
metadata => 'test=property',
require => Class['nova::api'],
}
nova_flavor { 'test_flavor':
ensure => present,
name => 'test_flavor',
@ -61,13 +54,6 @@ describe 'basic nova' do
it { is_expected.to have_entry('1 0 * * * nova-manage db archive_deleted_rows --max_rows 100 >>/var/log/nova/nova-rowsflush.log 2>&1').with_user('nova') }
end
describe 'nova aggregate' do
it 'should create new aggregate' do
shell('openstack --os-identity-api-version 3 --os-username nova --os-password a_big_secret --os-tenant-name services --os-user-domain-name Default --os-project-domain-name Default --os-auth-url http://127.0.0.1:5000/v3 aggregate list') do |r|
expect(r.stdout).to match(/test_aggregate/)
end
end
end
describe 'nova flavor' do
it 'should create new flavor' do
shell('openstack --os-identity-api-version 3 --os-username nova --os-password a_big_secret --os-tenant-name services --os-user-domain-name Default --os-project-domain-name Default --os-auth-url http://127.0.0.1:5000/v3 flavor list') do |r|