From 179138da6e58fb207bddbd23499346f0dec982e8 Mon Sep 17 00:00:00 2001 From: hparekh <hardik.parekh@nectechnologies.in> Date: Mon, 21 Dec 2015 10:41:14 +0900 Subject: [PATCH] Added README.rst file for tempest plugin. This file contains information about how to run mistral tests from tempest. Change-Id: I15498921ecf8f111099dc607731f567321fbfa13 Partially-Implements: blueprint mistral-tempest-plugin --- mistral_tempest_tests/README.rst | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 mistral_tempest_tests/README.rst diff --git a/mistral_tempest_tests/README.rst b/mistral_tempest_tests/README.rst new file mode 100644 index 0000000..1a517fa --- /dev/null +++ b/mistral_tempest_tests/README.rst @@ -0,0 +1,25 @@ +============================== +Tempest Integration of Mistral +============================== + +This directory contains Tempest tests to cover the mistral project. + +To list all Mistral tempest cases, go to tempest directory, then run:: + + $ testr list-tests mistral + +To run only these tests in tempest, go to tempest directory, then run:: + + $ ./run_tempest.sh -N -- mistral + +To run a single test case, go to tempest directory, then run with test case name, e.g.:: + + $ ./run_tempest.sh -N -- mistral_tempest_tests.tests.api.v2.test_mistral_basic_v2.WorkbookTestsV2.test_get_workbook + +Alternatively, to run mistral tempest plugin tests using tox, go to tempest directory, then run:: + + $ tox -eall-plugin mistral + +And, to run a specific test:: + + $ tox -eall-plugin mistral_tempest_tests.tests.api.v2.test_mistral_basic_v2.WorkbookTestsV2.test_get_workbook