Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
completion/ | 03-Apr-2024 | - | 1,744 | 1,353 | ||
fetchers/ | 03-Apr-2024 | - | 91 | 53 | ||
runners/ | 03-Apr-2024 | - | 6,411 | 4,847 | ||
tests/ | 03-Apr-2024 | - | 3,305 | 2,628 | ||
zspdx/ | 03-Apr-2024 | - | 2,906 | 1,965 | ||
README.txt | D | 03-Apr-2024 | 825 | 26 | 17 | |
bindesc.py | D | 03-Apr-2024 | 12.1 KiB | 317 | 246 | |
blobs.py | D | 03-Apr-2024 | 4.7 KiB | 141 | 103 | |
boards.py | D | 03-Apr-2024 | 2.8 KiB | 89 | 63 | |
build.py | D | 03-Apr-2024 | 26.9 KiB | 647 | 497 | |
build_helpers.py | D | 03-Apr-2024 | 5.5 KiB | 165 | 124 | |
completion.py | D | 03-Apr-2024 | 2.4 KiB | 82 | 57 | |
debug.py | D | 03-Apr-2024 | 2.5 KiB | 77 | 48 | |
export.py | D | 03-Apr-2024 | 2.1 KiB | 69 | 43 | |
flash.py | D | 03-Apr-2024 | 1.1 KiB | 34 | 19 | |
mypy.ini | D | 03-Apr-2024 | 35 | 3 | 2 | |
run_common.py | D | 03-Apr-2024 | 21.3 KiB | 580 | 405 | |
run_tests.py | D | 03-Apr-2024 | 1.3 KiB | 41 | 16 | |
sign.py | D | 03-Apr-2024 | 24.5 KiB | 620 | 436 | |
spdx.py | D | 03-Apr-2024 | 4 KiB | 115 | 82 | |
twister_cmd.py | D | 03-Apr-2024 | 1.8 KiB | 66 | 45 | |
zcmake.py | D | 03-Apr-2024 | 10.4 KiB | 304 | 218 | |
zephyr_ext_common.py | D | 03-Apr-2024 | 1.7 KiB | 48 | 30 |
README.txt
1This directory contains implementations for west commands which are 2tightly coupled to the zephyr tree. This includes the build, flash, 3and debug commands. 4 5Before adding more here, consider whether you might want to put new 6extensions in upstream west. For example, any commands which operate 7on the multi-repo need to be in upstream west, not here. Try to limit 8what goes in here to Zephyr-specific features. 9 10When extending this code, please keep the unit tests (in tests/) up to 11date. The mypy static type checker is also run on the runners package. 12 13To run these tests locally on Windows, run: 14 15 py -3 run_tests.py 16 17On macOS and Linux: 18 19 ./run_tests.py 20 21Note that these tests are run as part of Zephyr's CI when submitting 22an upstream pull request, and pull requests which break the tests 23cannot be merged. 24 25Thanks! 26