diff options
author | QMK Bot <hello@qmk.fm> | 2024-05-31 00:35:30 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2024-05-31 00:35:30 +0000 |
commit | 93f566280ec483b0d3ac022870c8f73c9ea6cf44 (patch) | |
tree | 290c2abafd1c70461644ceef4b3893292d20c80a /docs/cli_development.md | |
parent | c60554e0903b77b30eb2c85a463b7817460e6e14 (diff) | |
parent | 119e54e9e3db66355a07be5f8db9fcc81b65f1ff (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/cli_development.md')
-rw-r--r-- | docs/cli_development.md | 4 |
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 We use [yapf](https://github.com/google/yapf) to automatically format code. Our configuration is in the `[yapf]` section of `setup.cfg`. ::: tip -Tip- Many editors can use yapf as a plugin to automatically format code as you type. +Many editors can use yapf as a plugin to automatically format code as you type. ::: ## Testing Details @@ -217,7 +217,7 @@ Our tests can be found in `lib/python/qmk/tests/`. You will find both unit and i If 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: ```python - # TODO(unassigned/<your_github_username>): Write <unit|integration> tests +# TODO(unassigned/<your_github_username>): Write <unit|integration> tests ``` We 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. |