Merge "Remove MANIFEST.in"
diff --git a/README.rst b/README.rst
index e4e5a10..d9d0d29 100644
--- a/README.rst
+++ b/README.rst
@@ -1,15 +1,16 @@
-==============================================
-Tempest plugin for ironic and ironic-inspector
-==============================================
+=========================
+Tempest plugin for Ironic
+=========================
-This repository contains a Tempest_ plugin for OpenStack `Bare Metal`_ and
-`Bare Metal Introspection`_ projects.
+.. image:: https://governance.openstack.org/tc/badges/ironic-tempest-plugin.svg
+
+This repository contains a Tempest_ plugin for OpenStack `Bare Metal`_
+project.
* Free software: Apache license
* Documentation: https://docs.openstack.org/ironic-tempest-plugin
* Source: https://opendev.org/openstack/ironic-tempest-plugin
-* Bugs: https://storyboard.openstack.org/#!/project/951
+* Bugs: https://bugs.launchpad.net/ironic/+bugs
.. _Tempest: https://docs.openstack.org/tempest/latest/
.. _Bare Metal: https://docs.openstack.org/ironic/latest/
-.. _Bare Metal Introspection: https://docs.openstack.org/ironic-inspector/latest/
diff --git a/doc/source/index.rst b/doc/source/index.rst
index b036a93..c10c050 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -1,4 +1,17 @@
-.. include:: ../../README.rst
+=========================
+Tempest plugin for Ironic
+=========================
+
+This repository contains a Tempest_ plugin for OpenStack `Bare Metal`_
+project.
+
+* Free software: Apache license
+* Documentation: https://docs.openstack.org/ironic-tempest-plugin
+* Source: https://opendev.org/openstack/ironic-tempest-plugin
+* Bugs: https://bugs.launchpad.net/ironic/+bugs
+
+.. _Tempest: https://docs.openstack.org/tempest/latest/
+.. _Bare Metal: https://docs.openstack.org/ironic/latest/
Contents:
@@ -15,4 +28,3 @@
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
-
diff --git a/ironic_tempest_plugin/tests/api/admin/test_shards.py b/ironic_tempest_plugin/tests/api/admin/test_shards.py
index 5a5e4ba..c2c83bb 100644
--- a/ironic_tempest_plugin/tests/api/admin/test_shards.py
+++ b/ironic_tempest_plugin/tests/api/admin/test_shards.py
@@ -137,7 +137,7 @@
def setUp(self):
super(TestGetAllShards, self).setUp()
_, self.chassis = self.create_chassis()
- self.shards = ["shard1", "shard2", "shard3"]
+ self.shards = {"shard1", "shard2", "shard3"}
self.node_ids = []
for shard in self.shards:
_, node = self.create_node(self.chassis['uuid'], shard=shard)
@@ -146,6 +146,6 @@
@decorators.idempotent_id('fc786196-63c7-4e0d-bd14-3e478d4d1e3e')
def test_get_all_shards(self):
_, fetched_shards = self.client.get_shards()
- fetched_shards = [shard['name'] for shard in fetched_shards['shards']]
+ fetched_shards = {shard['name'] for shard in fetched_shards['shards']}
- self.assertCountEqual(self.shards, fetched_shards)
+ self.assertTrue(self.shards.issubset(fetched_shards))
diff --git a/zuul.d/project.yaml b/zuul.d/project.yaml
index 4849f56..dfdd81f 100644
--- a/zuul.d/project.yaml
+++ b/zuul.d/project.yaml
@@ -17,6 +17,7 @@
- ironic-standalone-redfish-2025.2
- ironic-standalone-redfish-2025.1
- ironic-tempest-standalone-advanced
+ - ironic-tempest-bios-ipmi-direct
# NOTE(dtantsur): these jobs cover rarely changed tests and are quite
# unstable, so keep them non-voting.
- ironic-tempest-ipa-wholedisk-direct-tinyipa-multinode:
@@ -34,3 +35,4 @@
- ironic-standalone-redfish
- ironic-standalone-redfish-2025.2
- ironic-standalone-redfish-2025.1
+ - ironic-tempest-bios-ipmi-direct