From e94f97399bbc6f1a6e6910c54cca3882f81d02c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= Date: Thu, 10 Sep 2020 11:12:53 +0200 Subject: [PATCH] [CI] Test Ironic Inspector API Per the recent Kayobe brekage due to TLS support in Ironic [1], let's test Ironic Inspector API as well. [1] https://review.opendev.org/750804 Change-Id: I7ccf0c4286f8907bc2fa2eabc41ec2876c9815a9 --- tests/setup_gate.sh | 2 +- tests/test-ironic.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/setup_gate.sh b/tests/setup_gate.sh index 5fcea9c4f0..e5a77388fc 100755 --- a/tests/setup_gate.sh +++ b/tests/setup_gate.sh @@ -15,7 +15,7 @@ function setup_openstack_clients { packages+=(python-zunclient) fi if [[ $SCENARIO == ironic ]]; then - packages+=(python-ironicclient) + packages+=(python-ironicclient python-ironic-inspector-client) fi if [[ $SCENARIO == masakari ]]; then packages+=(python-masakariclient) diff --git a/tests/test-ironic.sh b/tests/test-ironic.sh index 72fdc8e5a3..6cc3ede3f3 100755 --- a/tests/test-ironic.sh +++ b/tests/test-ironic.sh @@ -103,6 +103,8 @@ function test_ironic_logged { baremetal_driver_list=$(openstack baremetal driver list) openstack baremetal node list openstack baremetal port list + # Ironic Inspector API + openstack baremetal introspection rule list # Sanity check. if ! echo "$baremetal_driver_list" | grep fake-hardware; then