acceptance: ignore CLI warnings

Relax beaker CLI tests so we tolerate warnings like:
"Ignoring domain related configs because identity API version is 2.0"

The warnings are present in aggregate & flavor tests.

Change-Id: I1376322147a66a817f52e3cf94f6043e37e799a3
This commit is contained in:
Emilien Macchi 2016-05-09 10:26:18 -04:00
parent fc8d32ae7c
commit 6e13b38256
1 changed files with 0 additions and 2 deletions

View File

@ -117,7 +117,6 @@ describe 'basic nova' do
it 'should create new aggregate' do
shell('openstack --os-username nova --os-password a_big_secret --os-tenant-name services --os-auth-url http://127.0.0.1:5000/v2.0 aggregate list') do |r|
expect(r.stdout).to match(/test_aggregate/)
expect(r.stderr).to be_empty
end
end
end
@ -125,7 +124,6 @@ describe 'basic nova' do
it 'should create new flavor' do
shell('openstack --os-username nova --os-password a_big_secret --os-tenant-name services --os-auth-url http://127.0.0.1:5000/v2.0 flavor list') do |r|
expect(r.stdout).to match(/test_flavor/)
expect(r.stderr).to be_empty
end
end
end