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

..--

completion/11-Mar-2024-847609

runners/11-Mar-2024-4,0683,023

tests/11-Mar-2024-2,5922,035

zspdx/11-Mar-2024-2,8411,919

README.txtD11-Mar-2024825 2617

boards.pyD11-Mar-20242.8 KiB8862

build.pyD11-Mar-202420.7 KiB512388

build_helpers.pyD11-Mar-20244.8 KiB136103

completion.pyD11-Mar-20241.6 KiB5032

debug.pyD11-Mar-20242.5 KiB7748

export.pyD11-Mar-20242.1 KiB6943

flash.pyD11-Mar-2024885 3015

mypy.iniD11-Mar-202435 32

run_common.pyD11-Mar-202419.2 KiB527365

run_tests.pyD11-Mar-20241.3 KiB4116

sign.pyD11-Mar-202418.5 KiB486356

spdx.pyD11-Mar-20244 KiB11582

zcmake.pyD11-Mar-202410.2 KiB303217

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