• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

completion/04-Jan-2025-2,1731,720

fetchers/04-Jan-2025-9153

runners/04-Jan-2025-7,5245,677

sdk/04-Jan-2025-106

tests/04-Jan-2025-3,5142,812

zspdx/04-Jan-2025-3,0952,073

README.txtD04-Jan-2025825 2617

bindesc.pyD04-Jan-202513.2 KiB334261

blobs.pyD04-Jan-20256 KiB172126

boards.pyD04-Jan-20253.8 KiB11285

build.pyD04-Jan-202531 KiB721563

build_helpers.pyD04-Jan-20255.5 KiB165124

completion.pyD04-Jan-20252.3 KiB8156

debug.pyD04-Jan-20253 KiB9560

export.pyD04-Jan-20251.9 KiB5934

flash.pyD04-Jan-20251 KiB3418

mypy.iniD04-Jan-202535 32

packages.pyD04-Jan-20255.5 KiB165126

patch.pyD04-Jan-202511.1 KiB355289

robot.pyD04-Jan-2025822 3017

run_common.pyD04-Jan-202530.9 KiB821567

run_tests.pyD04-Jan-20251.3 KiB4116

sdk.pyD04-Jan-202520 KiB575457

shields.pyD04-Jan-20252.7 KiB8659

sign.pyD04-Jan-202525 KiB621434

simulate.pyD04-Jan-2025825 3017

spdx.pyD04-Jan-20254.2 KiB11481

twister_cmd.pyD04-Jan-20252 KiB6746

zcmake.pyD04-Jan-202510.4 KiB304218

zephyr_ext_common.pyD04-Jan-20252.2 KiB6141

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