summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-03-12 11:40:14 -0400
committerMonty Taylor <mordred@inaugust.com>2013-03-12 11:40:14 -0400
commit24f7985ac5e60d021298bc36a578bf383a47ed37 (patch)
treeb7c0ca10cd9399d5171ca8b1df3c0fddb60691d3
parentf208b1937ef6be79f985d9361bbaf097b06bd7ad (diff)
downloadpbr-24f7985ac5e60d021298bc36a578bf383a47ed37.tar.gz
Amended README testing instructions.
Change-Id: I0988fa318da381a2621f94c355459bf1550f57f7
-rw-r--r--README.rst15
1 files changed, 10 insertions, 5 deletions
diff --git a/README.rst b/README.rst
index 8b4dee9..a06866d 100644
--- a/README.rst
+++ b/README.rst
@@ -87,8 +87,13 @@ testr arguments that are needed to tox. For example, you can run:
It is also possible to run the tests inside of a virtual environment
you have created, or it is possible that you have all of the dependencies
-installed locally already. In this case, you can interact with the testr
-command directly. Running `testr run` will run the entire test suite. `testr
-run --parallel` will run it in parallel (this is the default incantation tox
-uses.) More information about testr can be found at:
-http://wiki.openstack.org/testr
+installed locally already. If you'd like to go this route, the requirements
+are listed in requirements.txt and the requirements for testing are in
+test-requirements.txt. Installing them via pip, for instance, is simply::
+
+ pip install -r requirements.txt -r test-requirements.txt
+
+In you go this route, you can interact with the testr command directly.
+Running `testr run` will run the entire test suite. `testr run --parallel`
+will run it in parallel (this is the default incantation tox uses.) More
+information about testr can be found at: http://wiki.openstack.org/testr