From 586313852fdc411205c27dda811ff4aa4d778e79 Mon Sep 17 00:00:00 2001 From: cdiep Date: Fri, 30 Jan 2015 10:28:20 -0800 Subject: [PATCH] Add instruction to run a short test to validate the setup. Update README with instruction to run a short test to validate the setup before running a full API test. Change-Id: I35ebc8b3875602bf41d5b8af243311bc98a41f1e --- README.rst | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 2cb0cef..44b7203 100644 --- a/README.rst +++ b/README.rst @@ -23,16 +23,23 @@ We've created an "easy button" for Ubuntu, Centos, RHEL and openSuSe. 1. Prepare a tempest configuration file that is customized to your cloud environment. -2. Change the directory to the refstack-client directory - (i.e. cd ~/refstack-client). +2. Go into the refstack-client directory. + + `cd ~/refstack-client` + 3. Source to use the correct Python environment. - source .venv/bin/activate + `source .venv/bin/activate` -4. Test your cloud by typing: +4. Validate your setup by running a short test. - ./refstack-client test -c + `./refstack-client test -c ` + `-vv -t "tempest.api.identity.admin.test_roles"` +5. Run a full API test set. + + `./refstack-client test -c -vv` + **Note:** a. Adding -v option will show the summary output. @@ -71,3 +78,5 @@ switching to that directory and using the installed dependencies. This will make the entire Tempest environment available for you to run, including the `run_tempest` script and `testr`. + +