From 6935e359fbf7f276504e6077caf4c0ac260d53ef Mon Sep 17 00:00:00 2001 From: Vaia Patta Date: Sun, 17 May 2026 14:19:48 +0300 Subject: [PATCH] Change curly brackets to angled in tests.md --- exercises/shared/.docs/tests.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/exercises/shared/.docs/tests.md b/exercises/shared/.docs/tests.md index 5d1c9b9959d..8b6d608a486 100644 --- a/exercises/shared/.docs/tests.md +++ b/exercises/shared/.docs/tests.md @@ -13,32 +13,32 @@ Extended information can be found in our website [Python testing guide][Python t ### Running Tests -To run the included tests, navigate to the folder where the exercise is stored using `cd` in your terminal (_replace `{exercise-folder-location}` below with your path_). +To run the included tests, navigate to the folder where the exercise is stored using `cd` in your terminal (_replace `` below with your path_). Test files usually end in `_test.py`, and are the same tests that run on the website when a solution is uploaded. Linux/MacOS ```bash -$ cd {path/to/exercise-folder-location} +$ cd ``` Windows ```powershell -PS C:\Users\foobar> cd {path\to\exercise-folder-location} +PS C:\Users\foobar> cd ```
-Next, run the `pytest` command in your terminal, replacing `{exercise_test.py}` with the name of the test file: +Next, run the `pytest` command in your terminal, replacing `` with the name of the test file: Linux/MacOS ```bash -$ python3 -m pytest -o markers=task {exercise_test.py} +$ python3 -m pytest -o markers=task ==================== 7 passed in 0.08s ==================== ``` Windows ```powershell -PS C:\Users\foobar> py -m pytest -o markers=task {exercise_test.py} +PS C:\Users\foobar> py -m pytest -o markers=task ==================== 7 passed in 0.08s ==================== ```