From 016b7dd6c517e8be5037b3915be69b2e3ed6d3d8 Mon Sep 17 00:00:00 2001 From: jiapei Date: Mon, 22 Oct 2018 14:14:03 +0000 Subject: [PATCH] Fix ironic developer quickstart document The running tempest section has a deprecated option "all-plugin", if developer follows the steps, he will get an InvocationError. This patch is going to fix it and a broken URL. Change-Id: I7874817d06309287cba27d2a3d3ec7fe7c8122a2 Story: 2004139 Task: 27605 Co-Authored-By: Iury Gregory Melo Ferreira --- doc/source/contributor/dev-quickstart.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/contributor/dev-quickstart.rst b/doc/source/contributor/dev-quickstart.rst index 62447a0997..5e17bb1365 100644 --- a/doc/source/contributor/dev-quickstart.rst +++ b/doc/source/contributor/dev-quickstart.rst @@ -212,7 +212,7 @@ Next, install and configure system dependencies. Step 2: Install System Dependencies Locally -------------------------------------------- -This option will install RabbitMQ and MySQL on your local system. This may not +This step will install RabbitMQ and MySQL on your local system. This may not be desirable in some situations (eg, you're developing from a laptop and do not want to run a MySQL server on it all the time). @@ -680,16 +680,16 @@ First, navigate to Tempest directory:: cd /opt/stack/tempest To run all tests from the `Ironic plugin -`_, +`_, execute the following command:: - tox -e all-plugin -- ironic + tox -e all -- ironic To limit the amount of tests that you would like to run, you can use a regex. For instance, to limit the run to a single test file, the following command can be used:: - tox -e all-plugin -- ironic_tempest_plugin.tests.scenario.test_baremetal_basic_ops + tox -e all -- ironic_tempest_plugin.tests.scenario.test_baremetal_basic_ops Debugging Tempest tests