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
This commit is contained in:
cdiep 2015-01-30 10:28:20 -08:00
parent 8aa2d8062e
commit 586313852f

View File

@ -23,15 +23,22 @@ We've created an "easy button" for Ubuntu, Centos, RHEL and openSuSe.
1. Prepare a tempest configuration file that is customized to your cloud 1. Prepare a tempest configuration file that is customized to your cloud
environment. environment.
2. Change the directory to the refstack-client directory 2. Go into the refstack-client directory.
(i.e. cd ~/refstack-client).
`cd ~/refstack-client`
3. Source to use the correct Python environment. 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 <Path of the tempest configuration file to use> `./refstack-client test -c <Path of the tempest configuration file to use>`
`-vv -t "tempest.api.identity.admin.test_roles"`
5. Run a full API test set.
`./refstack-client test -c <Path of the tempest configuration file to use> -vv`
**Note:** **Note:**
@ -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, This will make the entire Tempest environment available for you to run,
including the `run_tempest` script and `testr`. including the `run_tempest` script and `testr`.