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

..--

completion/03-Aug-2024-2,1041,660

fetchers/03-Aug-2024-9153

runners/03-Aug-2024-6,8915,196

tests/03-Aug-2024-3,3292,652

zspdx/03-Aug-2024-3,0682,073

README.txtD03-Aug-2024825 2617

bindesc.pyD03-Aug-202412.1 KiB317246

blobs.pyD03-Aug-20246 KiB173127

boards.pyD03-Aug-20243.7 KiB11184

build.pyD03-Aug-202427.8 KiB665512

build_helpers.pyD03-Aug-20245.5 KiB165124

completion.pyD03-Aug-20242.4 KiB8257

debug.pyD03-Aug-20242.5 KiB7748

export.pyD03-Aug-20242.1 KiB6943

flash.pyD03-Aug-20241 KiB3418

mypy.iniD03-Aug-202435 32

robot.pyD03-Aug-2024822 3017

run_common.pyD03-Aug-202429.6 KiB789540

run_tests.pyD03-Aug-20241.3 KiB4116

shields.pyD03-Aug-20242.7 KiB8760

sign.pyD03-Aug-202424.6 KiB620436

simulate.pyD03-Aug-2024825 3017

spdx.pyD03-Aug-20244 KiB11582

twister_cmd.pyD03-Aug-20241.9 KiB6746

zcmake.pyD03-Aug-202410.4 KiB304218

zephyr_ext_common.pyD03-Aug-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