summaryrefslogtreecommitdiff
path: root/TESTING.rst
diff options
context:
space:
mode:
authorJesse Keating <omgjlk@us.ibm.com>2017-03-02 17:24:20 -0800
committerJesse Keating <omgjlk@us.ibm.com>2017-03-02 17:24:20 -0800
commitb233e56e3230213abbe67b67143f3643a3206b92 (patch)
tree759190e1d64ed2a6ad1a1267ee1e424f7f7a88cc /TESTING.rst
parent7641d8046253e4f678793c13c998e427c4af1da2 (diff)
downloadzuul-b233e56e3230213abbe67b67143f3643a3206b92.tar.gz
Update testing doc to reflect unit subdir move
Change-Id: I38babbafee2ba4d3e92481424041e5ff3bd9385c
Diffstat (limited to 'TESTING.rst')
-rw-r--r--TESTING.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/TESTING.rst b/TESTING.rst
index 56f2fbb5e..069dffd3f 100644
--- a/TESTING.rst
+++ b/TESTING.rst
@@ -54,12 +54,12 @@ To run individual tests with tox::
For example, to *run the basic Zuul test*::
- tox -e py27 -- tests.test_scheduler.TestScheduler.test_jobs_launched
+ tox -e py27 -- tests.unit.test_scheduler.TestScheduler.test_jobs_launched
To *run one test in the foreground* (after previously having run tox
to set up the virtualenv)::
- .tox/py27/bin/python -m testtools.run tests.test_scheduler.TestScheduler.test_jobs_launched
+ .tox/py27/bin/python -m testtools.run tests.unit.test_scheduler.TestScheduler.test_jobs_launched
List Failing Tests
------------------