From 167b7979c3a7f16cc74ad3a484802284da3f53db Mon Sep 17 00:00:00 2001 From: Dmitry Dunaev Date: Wed, 23 Nov 2022 17:13:25 +0300 Subject: [PATCH] [WIFI-11619] Fix: Docker example command Signed-off-by: Dmitry Dunaev --- docker/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/README.md b/docker/README.md index 566ee4111..e9636e53f 100644 --- a/docker/README.md +++ b/docker/README.md @@ -32,5 +32,5 @@ connectivity tests on a specific lab. **NOTE:** Use appropriate marker for your configuration.py and replace ${YOUR_ALLURE_RESULTS_DIR} with your allure result dir. ```bash -docker run -i -t -v $(YOUR_ALLURE_RESULT_DIR):/allure-results -v $(pwd)/configuration.py:/wlan-testing/configuration.py wlantest /bin/bash -c "cd tests; pytest -s -vvv --testbed=basic-02 -m client_connectivity_test --skip-testrail --alluredir=/allure-result" +docker run -i -t -v $(YOUR_ALLURE_RESULT_DIR):/allure-results -v $(pwd)/configuration.py:/wlan-testing/configuration.py wlantest -c "cd tests; pytest -s -vvv --testbed=basic-02 -m client_connectivity_test --skip-testrail --alluredir=/allure-result" ```