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

..--

completion/11-Mar-2024-1,3721,036

fetchers/11-Mar-2024-9153

runners/11-Mar-2024-5,7314,312

tests/11-Mar-2024-3,0532,423

zspdx/11-Mar-2024-2,8511,927

README.txtD11-Mar-2024825 2617

blobs.pyD11-Mar-20244.7 KiB141103

boards.pyD11-Mar-20242.8 KiB8963

build.pyD11-Mar-202423.7 KiB573436

build_helpers.pyD11-Mar-20245.6 KiB159118

completion.pyD11-Mar-20242.2 KiB7652

debug.pyD11-Mar-20242.5 KiB7748

export.pyD11-Mar-20242.1 KiB6943

flash.pyD11-Mar-20241 KiB3318

mypy.iniD11-Mar-202435 32

run_common.pyD11-Mar-202421.2 KiB579404

run_tests.pyD11-Mar-20241.3 KiB4116

sign.pyD11-Mar-202421.3 KiB554396

spdx.pyD11-Mar-20244 KiB11582

twister_cmd.pyD11-Mar-20241.8 KiB6645

zcmake.pyD11-Mar-202410.4 KiB304218

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