From c82516a7471b010bd055196c77e05f0834c0e2c0 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev Date: Thu, 14 Nov 2024 11:19:01 -0500 Subject: [PATCH] DEBUG-2334 fix running documentation with scenario The example was mixing upper and lower case scenario name. Use +S option to pass the actual scenario name as specified in the test file (in lower case). --- docs/execute/run.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/execute/run.md b/docs/execute/run.md index 4ee2e12ddd..0a4fe6be3e 100644 --- a/docs/execute/run.md +++ b/docs/execute/run.md @@ -15,10 +15,10 @@ If the test contains `@scenarios.SCENARIO_NAME` such as `@scenarios.integrations`, then the `./run.sh` needs to be adjusted to the following: ```bash -./run.sh SCENARIO_NAME tests/path_to_test.py +./run.sh +S SCENARIO_NAME tests/path_to_test.py # Example: for @scenarios.integrations in tests/integrations/test_sql.py -./run.sh INTEGRATIONS tests/integrations/test_sql.py +./run.sh +S integrations tests/integrations/test_sql.py ``` ## Run only one class, or one method