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

..--

completion/18-Mar-2025-2,1731,720

fetchers/18-Mar-2025-9153

runners/18-Mar-2025-7,6885,818

sdk/18-Mar-2025-106

tests/18-Mar-2025-3,4542,772

zspdx/18-Mar-2025-3,0952,073

README.txtD18-Mar-2025825 2617

bindesc.pyD18-Mar-202513.2 KiB334261

blobs.pyD18-Mar-20256.3 KiB180133

boards.pyD18-Mar-20254.5 KiB13099

build.pyD18-Mar-202531 KiB721563

build_helpers.pyD18-Mar-20255.5 KiB165124

completion.pyD18-Mar-20252.3 KiB8156

debug.pyD18-Mar-20253 KiB9560

export.pyD18-Mar-20251.9 KiB5934

flash.pyD18-Mar-20251 KiB3418

gtags.pyD18-Mar-20253.4 KiB9969

mypy.iniD18-Mar-202535 32

packages.pyD18-Mar-20255.8 KiB173133

patch.pyD18-Mar-202518.6 KiB557462

robot.pyD18-Mar-2025822 3017

run_common.pyD18-Mar-202531.5 KiB838581

run_tests.pyD18-Mar-20251.3 KiB4116

sdk.pyD18-Mar-202521.1 KiB608482

shields.pyD18-Mar-20252.7 KiB8659

sign.pyD18-Mar-202525.7 KiB636445

simulate.pyD18-Mar-2025825 3017

spdx.pyD18-Mar-20254.3 KiB11683

twister_cmd.pyD18-Mar-20252 KiB6746

zcmake.pyD18-Mar-202511.2 KiB327236

zephyr_ext_common.pyD18-Mar-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