Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
completion/ | 11-Mar-2024 | - | 1,372 | 1,036 | ||
fetchers/ | 11-Mar-2024 | - | 91 | 53 | ||
runners/ | 11-Mar-2024 | - | 5,731 | 4,312 | ||
tests/ | 11-Mar-2024 | - | 3,053 | 2,423 | ||
zspdx/ | 11-Mar-2024 | - | 2,851 | 1,927 | ||
README.txt | D | 11-Mar-2024 | 825 | 26 | 17 | |
blobs.py | D | 11-Mar-2024 | 4.7 KiB | 141 | 103 | |
boards.py | D | 11-Mar-2024 | 2.8 KiB | 89 | 63 | |
build.py | D | 11-Mar-2024 | 23.7 KiB | 573 | 436 | |
build_helpers.py | D | 11-Mar-2024 | 5.6 KiB | 159 | 118 | |
completion.py | D | 11-Mar-2024 | 2.2 KiB | 76 | 52 | |
debug.py | D | 11-Mar-2024 | 2.5 KiB | 77 | 48 | |
export.py | D | 11-Mar-2024 | 2.1 KiB | 69 | 43 | |
flash.py | D | 11-Mar-2024 | 1 KiB | 33 | 18 | |
mypy.ini | D | 11-Mar-2024 | 35 | 3 | 2 | |
run_common.py | D | 11-Mar-2024 | 21.2 KiB | 579 | 404 | |
run_tests.py | D | 11-Mar-2024 | 1.3 KiB | 41 | 16 | |
sign.py | D | 11-Mar-2024 | 21.3 KiB | 554 | 396 | |
spdx.py | D | 11-Mar-2024 | 4 KiB | 115 | 82 | |
twister_cmd.py | D | 11-Mar-2024 | 1.8 KiB | 66 | 45 | |
zcmake.py | D | 11-Mar-2024 | 10.4 KiB | 304 | 218 | |
zephyr_ext_common.py | D | 11-Mar-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