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

..--

completion/03-Apr-2024-1,7441,353

fetchers/03-Apr-2024-9153

runners/03-Apr-2024-6,4114,847

tests/03-Apr-2024-3,3052,628

zspdx/03-Apr-2024-2,9061,965

README.txtD03-Apr-2024825 2617

bindesc.pyD03-Apr-202412.1 KiB317246

blobs.pyD03-Apr-20244.7 KiB141103

boards.pyD03-Apr-20242.8 KiB8963

build.pyD03-Apr-202426.9 KiB647497

build_helpers.pyD03-Apr-20245.5 KiB165124

completion.pyD03-Apr-20242.4 KiB8257

debug.pyD03-Apr-20242.5 KiB7748

export.pyD03-Apr-20242.1 KiB6943

flash.pyD03-Apr-20241.1 KiB3419

mypy.iniD03-Apr-202435 32

run_common.pyD03-Apr-202421.3 KiB580405

run_tests.pyD03-Apr-20241.3 KiB4116

sign.pyD03-Apr-202424.5 KiB620436

spdx.pyD03-Apr-20244 KiB11582

twister_cmd.pyD03-Apr-20241.8 KiB6645

zcmake.pyD03-Apr-202410.4 KiB304218

zephyr_ext_common.pyD03-Apr-20241.7 KiB4830

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