summaryrefslogtreecommitdiff
path: root/docs/coding_conventions_python.md
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2025-03-20 03:04:10 +0000
committerGitHub <noreply@github.com>2025-03-20 14:04:10 +1100
commitf820a186d489911b7da3907163c319385176f6d9 (patch)
treeb73477f55125a44b6505b4848245818a1e12f499 /docs/coding_conventions_python.md
parent3484f0a0dffd264ae3bef70ce2a8961489c16f50 (diff)
Align to latest CLI dependencies (#24553)
* Align to latest CLI dependencies * Update docs
Diffstat (limited to 'docs/coding_conventions_python.md')
-rw-r--r--docs/coding_conventions_python.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/coding_conventions_python.md b/docs/coding_conventions_python.md
index 502ee9102e..b25466bf82 100644
--- a/docs/coding_conventions_python.md
+++ b/docs/coding_conventions_python.md
@@ -2,7 +2,7 @@
2 2
3Most of our style follows PEP8 with some local modifications to make things less nit-picky. 3Most of our style follows PEP8 with some local modifications to make things less nit-picky.
4 4
5* We target Python 3.7 for compatibility with all supported platforms. 5* We target Python 3.9 for compatibility with all supported platforms.
6* We indent using four (4) spaces (soft tabs) 6* We indent using four (4) spaces (soft tabs)
7* We encourage liberal use of comments 7* We encourage liberal use of comments
8 * Think of them as a story describing the feature 8 * Think of them as a story describing the feature
@@ -317,7 +317,7 @@ At the time of this writing our tests are not very comprehensive. Looking at the
317 317
318## Integration Tests 318## Integration Tests
319 319
320Integration tests can be found in `lib/python/qmk/tests/test_cli_commands.py`. This is where CLI commands are actually run and their overall behavior is verified. We use [`subprocess`](https://docs.python.org/3.7/library/subprocess.html#module-subprocess) to launch each CLI command and a combination of checking output and returncode to determine if the right thing happened. 320Integration tests can be found in `lib/python/qmk/tests/test_cli_commands.py`. This is where CLI commands are actually run and their overall behavior is verified. We use [`subprocess`](https://docs.python.org/3.9/library/subprocess.html#module-subprocess) to launch each CLI command and a combination of checking output and returncode to determine if the right thing happened.
321 321
322## Unit Tests 322## Unit Tests
323 323