Merge "Fix example for running individual tests"

This commit is contained in:
Jenkins 2014-07-07 16:51:59 +00:00 committed by Gerrit Code Review
commit 5dfd10a722
1 changed files with 2 additions and 2 deletions

View File

@ -123,11 +123,11 @@ class separating it from the module path with a colon.
For example, the following would run only the JSONV2TestCase tests from
neutron/tests/unit/test_api_v2.py::
$ ./run_tests.sh neutron.tests.unit.test_api_v2:JSONV2TestCase
$ ./run_tests.sh neutron.tests.unit.test_api_v2.JSONV2TestCase
or::
$ ./tox neutron.tests.unit.test_api_v2:JSONV2TestCase
$ tox -e py27 neutron.tests.unit.test_api_v2.JSONV2TestCase
Adding more tests
~~~~~~~~~~~~~~~~~