summaryrefslogtreecommitdiff
path: root/docs/cli_development.md
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2024-05-31 01:34:30 +0100
committerGitHub <noreply@github.com>2024-05-31 10:34:30 +1000
commit119e54e9e3db66355a07be5f8db9fcc81b65f1ff (patch)
tree0dbca754bc72a2cd868caf73ce19be939a1967c4 /docs/cli_development.md
parent32af90ae840714d0fcb8dc438bc519e88ab63e1f (diff)
Docs theme updates (#23832)
Diffstat (limited to 'docs/cli_development.md')
-rw-r--r--docs/cli_development.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/cli_development.md b/docs/cli_development.md
index 159bca4faa..2e74220d4b 100644
--- a/docs/cli_development.md
+++ b/docs/cli_development.md
@@ -207,7 +207,7 @@ qmk format-python
207We use [yapf](https://github.com/google/yapf) to automatically format code. Our configuration is in the `[yapf]` section of `setup.cfg`. 207We use [yapf](https://github.com/google/yapf) to automatically format code. Our configuration is in the `[yapf]` section of `setup.cfg`.
208 208
209::: tip 209::: tip
210Tip- Many editors can use yapf as a plugin to automatically format code as you type. 210Many editors can use yapf as a plugin to automatically format code as you type.
211::: 211:::
212 212
213## Testing Details 213## Testing Details
@@ -217,7 +217,7 @@ Our tests can be found in `lib/python/qmk/tests/`. You will find both unit and i
217If your PR does not include a comprehensive set of tests please add comments like this to your code so that other people know where they can help: 217If your PR does not include a comprehensive set of tests please add comments like this to your code so that other people know where they can help:
218 218
219```python 219```python
220 # TODO(unassigned/<your_github_username>): Write <unit|integration> tests 220# TODO(unassigned/<your_github_username>): Write <unit|integration> tests
221``` 221```
222 222
223We use [nose2](https://nose2.readthedocs.io/en/latest/getting_started.html) to run our tests. You can refer to the nose2 documentation for more details on what you can do in your test functions. 223We use [nose2](https://nose2.readthedocs.io/en/latest/getting_started.html) to run our tests. You can refer to the nose2 documentation for more details on what you can do in your test functions.