diff options
author | skullY <skullydazed@gmail.com> | 2020-01-13 21:27:12 -0800 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2020-01-14 07:52:14 -0800 |
commit | 58d27cf404b2a7e02f4adf17eaba9163aac3abf7 (patch) | |
tree | 5941f95bbf5098b0afe8c0206e2f56b6f5b4db17 | |
parent | 44168baaa74190bb78216c27500101a75516fad6 (diff) | |
download | qmk_firmware-58d27cf404b2a7e02f4adf17eaba9163aac3abf7.tar.gz qmk_firmware-58d27cf404b2a7e02f4adf17eaba9163aac3abf7.zip |
Add a note explaining how to run tests
-rw-r--r-- | docs/coding_conventions_python.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/coding_conventions_python.md b/docs/coding_conventions_python.md index cf9ab838e..1aefc044e 100644 --- a/docs/coding_conventions_python.md +++ b/docs/coding_conventions_python.md | |||
@@ -311,7 +311,7 @@ FIXME(username): Revisit this code when the frob feature is done. | |||
311 | 311 | ||
312 | # Testing | 312 | # Testing |
313 | 313 | ||
314 | We use a combination of Integration and Unit testing to ensure that the our code is as bug-free as possible. All the tests can be found in `lib/python/qmk/tests/`. | 314 | We use a combination of Integration and Unit testing to ensure that the our code is as bug-free as possible. All the tests can be found in `lib/python/qmk/tests/`. You can run all the tests with `qmk pytest`. |
315 | 315 | ||
316 | At the time of this writing our tests are not very comprehensive. Looking at the current tests and writing new test cases for untested situations is a great way to both familiarize yourself with the codebase and contribute to QMK. | 316 | At the time of this writing our tests are not very comprehensive. Looking at the current tests and writing new test cases for untested situations is a great way to both familiarize yourself with the codebase and contribute to QMK. |
317 | 317 | ||