Yuiko Takada | b652700 | 2015-12-07 11:49:12 +0900 | [diff] [blame] | 1 | ===================== |
| 2 | Ironic tempest plugin |
| 3 | ===================== |
| 4 | |
| 5 | This directory contains Tempest tests to cover the Ironic project, |
| 6 | as well as a plugin to automatically load these tests into tempest. |
| 7 | |
| 8 | See the tempest plugin docs for information on using it: |
| 9 | http://docs.openstack.org/developer/tempest/plugin.html#using-plugins |
| 10 | |
| 11 | To run all tests from this plugin, install ironic into your environment |
| 12 | and run:: |
| 13 | |
| 14 | $ tox -e all-plugin -- ironic |
| 15 | |
| 16 | To run a single test case, run with the test case name, for example:: |
| 17 | |
| 18 | $ tox -e all-plugin -- ironic_tempest_plugin.tests.scenario.test_baremetal_basic_ops.BaremetalBasicOps.test_baremetal_server_ops |
| 19 | |
| 20 | To run all tempest tests including this plugin, run:: |
| 21 | |
| 22 | $ tox -e all-plugin |