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
To run the tests, go to the folder where the exercise is stored using `cd` in your terminal (_replace `{exercise-folder-location}` below with your path_).
51
+
To run the tests, go to the folder where the exercise is stored using `cd` in your terminal (_replace `<exercise-folder-location>` below with your path_).
52
52
53
53
```bash
54
-
$ cd{exercise-folder-location}
54
+
$ cd<exercise-folder-location>
55
55
```
56
+
**Note:**`<exercise-folder-location>` or most things inside angle brackets denote a placeholder value.
57
+
A normal path should simply has its name without any brackets like: `myFolder` or `myFile.py`
56
58
57
59
The file you will want to run usually ends in `_test.py`.
58
60
This file contains the tests for the exercise solution, and are the same tests that run on the website when a solution is uploaded.
59
-
Next, run the following command in your terminal, replacing `{exercise_test.py}` with the location/name of the test file:
61
+
Next, run the following command in your terminal, replacing `<exercise_test.py>` with the location/name of the test file:
0 commit comments