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 the images test.

Change-Id: Icffd95cea91c707c151faf44e16331217978009b
This commit is contained in:
Alex Schultz 2016-05-11 12:25:39 -06:00
parent d70f4c5434
commit 0cf9a7ae60
1 changed files with 0 additions and 2 deletions

View File

@ -64,7 +64,6 @@ describe 'glance class' do
glance_env_opts = '--os-username glance --os-password a_big_secret --os-tenant-name services --os-auth-url http://127.0.0.1:5000/v2.0'
shell("openstack #{glance_env_opts} image list") do |r|
expect(r.stdout).to match(/test_image/)
expect(r.stderr).to be_empty
end
shell("openstack #{glance_env_opts} image show test_image --format shell") do |r|
expect(r.stdout).to match(/visibility="public"/)
@ -73,7 +72,6 @@ describe 'glance class' do
expect(r.stdout).to match(/properties="icanhaz='cheezburger'"/)
expect(r.stdout).to match(/min_ram="64"/)
expect(r.stdout).to match(/min_disk="1024"/)
expect(r.stderr).to be_empty
end
end
end