You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exercises/shared/.docs/tests.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,32 +13,32 @@ Extended information can be found in our website [Python testing guide][Python t
13
13
14
14
### Running Tests
15
15
16
-
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_).
16
+
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_).
17
17
Test files usually end in `_test.py`, and are the same tests that run on the website when a solution is uploaded.
18
18
19
19
Linux/MacOS
20
20
```bash
21
-
$ cd{path/to/exercise-folder-location}
21
+
$ cd<path/to/exercise-folder-location>
22
22
```
23
23
24
24
Windows
25
25
```powershell
26
-
PS C:\Users\foobar> cd {path\to\exercise-folder-location}
26
+
PS C:\Users\foobar> cd <path\to\exercise-folder-location>
27
27
```
28
28
29
29
<br>
30
30
31
-
Next, run the `pytest` command in your terminal, replacing `{exercise_test.py}` with the name of the test file:
31
+
Next, run the `pytest` command in your terminal, replacing `<exercise_test.py>` with the name of the test file:
0 commit comments