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
* Update TESTS.md
- Change placeholder brackets from `{}` to `<>`
- Add a note explain placeholder value
- Change pytest version number to reflect the latest one
* Update TOOLS.md
Small change to fit with the version in `INSTALLATION.md`
* Update docs/TESTS.md
Using exercism note block and clearer example
Co-authored-by: BethanyG <[email protected]>
* Update docs/TOOLS.md
Add more details about tooling
Co-authored-by: BethanyG <[email protected]>
---------
Co-authored-by: BethanyG <[email protected]>
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
56
57
+
<br>
58
+
59
+
~~~~exercism/note
60
+
`<exercise-folder-location>` or most things inside angle brackets denote a **_placeholder value_**.
61
+
A normal path or file name should be written _without_ any brackets.
62
+
63
+
64
+
For example: `/Users/janedoe/exercism/python/exercises/concept/chaitanas-colossal-coaster` (on *nix systems), `C:\Users\janedoe\exercism\python\exercises\practice\hello-world\` (on Windows), `myFolder` or `my_file.py`.
65
+
~~~~
66
+
67
+
<br>
68
+
69
+
57
70
The file you will want to run usually ends in `_test.py`.
58
71
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:
72
+
Next, run the following command in your terminal, replacing `<exercise_test.py>` with the location/name of the test file:
0 commit comments