From 44c734e624546f0bfdc159773e0009c063749f84 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Sat, 1 Dec 2018 06:16:01 +1100 Subject: [PATCH] Local test docs: correct tox shell command usage (#49350) The ansible-test shell command doesn't have a --python option; you have to specify the tox environment directly to the --tox command Partially fixes: #49349 --- docs/docsite/rst/dev_guide/testing_running_locally.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/dev_guide/testing_running_locally.rst b/docs/docsite/rst/dev_guide/testing_running_locally.rst index 0d80d3d81c..1943104400 100644 --- a/docs/docsite/rst/dev_guide/testing_running_locally.rst +++ b/docs/docsite/rst/dev_guide/testing_running_locally.rst @@ -57,7 +57,7 @@ Interactive Shell Use the ``ansible-test shell`` command to get an interactive shell in the same environment used to run tests. Examples: * ``ansible-test shell --docker`` - Open a shell in the default docker container. -* ``ansible-test shell --tox --python 3.6`` - Open a shell in the Python 3.6 ``tox`` environment. +* ``ansible-test shell --tox 3.6`` - Open a shell in the Python 3.6 ``tox`` environment. Code Coverage