Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
completion/ | 03-Aug-2024 | - | 2,104 | 1,660 | ||
fetchers/ | 03-Aug-2024 | - | 91 | 53 | ||
runners/ | 03-Aug-2024 | - | 6,891 | 5,196 | ||
tests/ | 03-Aug-2024 | - | 3,329 | 2,652 | ||
zspdx/ | 03-Aug-2024 | - | 3,068 | 2,073 | ||
README.txt | D | 03-Aug-2024 | 825 | 26 | 17 | |
bindesc.py | D | 03-Aug-2024 | 12.1 KiB | 317 | 246 | |
blobs.py | D | 03-Aug-2024 | 6 KiB | 173 | 127 | |
boards.py | D | 03-Aug-2024 | 3.7 KiB | 111 | 84 | |
build.py | D | 03-Aug-2024 | 27.8 KiB | 665 | 512 | |
build_helpers.py | D | 03-Aug-2024 | 5.5 KiB | 165 | 124 | |
completion.py | D | 03-Aug-2024 | 2.4 KiB | 82 | 57 | |
debug.py | D | 03-Aug-2024 | 2.5 KiB | 77 | 48 | |
export.py | D | 03-Aug-2024 | 2.1 KiB | 69 | 43 | |
flash.py | D | 03-Aug-2024 | 1 KiB | 34 | 18 | |
mypy.ini | D | 03-Aug-2024 | 35 | 3 | 2 | |
robot.py | D | 03-Aug-2024 | 822 | 30 | 17 | |
run_common.py | D | 03-Aug-2024 | 29.6 KiB | 789 | 540 | |
run_tests.py | D | 03-Aug-2024 | 1.3 KiB | 41 | 16 | |
shields.py | D | 03-Aug-2024 | 2.7 KiB | 87 | 60 | |
sign.py | D | 03-Aug-2024 | 24.6 KiB | 620 | 436 | |
simulate.py | D | 03-Aug-2024 | 825 | 30 | 17 | |
spdx.py | D | 03-Aug-2024 | 4 KiB | 115 | 82 | |
twister_cmd.py | D | 03-Aug-2024 | 1.9 KiB | 67 | 46 | |
zcmake.py | D | 03-Aug-2024 | 10.4 KiB | 304 | 218 | |
zephyr_ext_common.py | D | 03-Aug-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