Update running-tests.rst file

There is no test_kolla_docker.py in kolla/tests directory

Change-Id: I57885c308726c65300e9067efa08ffb8bd7ebb52
partially-implements: blueprint documentation-rework
This commit is contained in:
zhuzeyu 2017-02-17 12:23:56 +08:00
parent eaec95b14e
commit aa6a5c02b7
1 changed files with 8 additions and 8 deletions

View File

@ -62,25 +62,25 @@ directory use:
$ tox -e py27 kolla.tests
To run the tests of a specific file say ``kolla/tests/test_kolla_docker.py``:
To run the tests of a specific file say ``kolla/tests/test_set_config.py``:
.. code-block:: console
$ tox -e py27 test_kolla_docker
$ tox -e py27 test_set_config
To run the tests in the ``ModuleArgsTest`` class in
the ``kolla/tests/test_kolla_docker.py`` file:
To run the tests in the ``ConfigFileTest`` class in
the ``kolla/tests/test_set_config.py`` file:
.. code-block:: console
$ tox -e py27 test_kolla_docker.ModuleArgsTest
$ tox -e py27 test_set_config.ConfigFileTest
To run the ``ModuleArgsTest.test_module_args`` test method in
the ``kolla/tests/test_kolla_docker.py`` file:
To run the ``ConfigFileTest.test_delete_path_not_exists`` test method in
the ``kolla/tests/test_set_config.py`` file:
.. code-block:: console
$ tox -e py27 test_kolla_docker.ModuleArgsTest.test_module_args
$ tox -e py27 test_set_config.ConfigFileTest.test_delete_path_not_exists
Coverage Report Generation