zephyr/scripts/west_commands
Marti Bolivar fe91e48418 scripts: runners: add __contains__ to BuildConfiguration
Implement the in operator for this class.

Signed-off-by: Marti Bolivar <marti.bolivar@nordicsemi.no>
2019-06-16 10:16:15 -04:00
..
completion west: Add completion command 2019-05-10 13:08:27 +02:00
runners scripts: runners: add __contains__ to BuildConfiguration 2019-06-16 10:16:15 -04:00
tests
boards.py
build_helpers.py west: build: Configurable build folder format 2019-06-11 00:00:34 +02:00
build.py west: build: Configurable build folder format 2019-06-11 00:00:34 +02:00
completion.py west: Add completion command 2019-05-10 13:08:27 +02:00
debug.py
flash.py
README.txt
run_common.py scripts: west: improve error message on missing cache 2019-06-10 17:46:27 -05:00
sign.py west: fix import error on sign.py 2019-05-07 08:36:29 -04:00
zcmake.py
zephyr_ext_common.py

This directory contains implementations for west commands which are
tightly coupled to the zephyr tree. Currently, those are the build,
flash, and debug commands.

Before adding more here, consider whether you might want to put new
extensions in upstream west. For example, any commands which operate
on the multi-repo need to be in upstream west, not here. Try to limit
what goes in here to just those files that change along with Zephyr
itself.

When extending this code, please keep the unit tests (in tests/) up to
date. You can run the tests with this command from this directory:

$ PYTHONPATH=$(west list --format="{abspath}" west)/src:$PWD py.test

Windows users will need to find the path to .west/west/src in their
Zephyr installation, then run something like this:

> cmd /C "set PYTHONPATH=path\to\.west\west\src:path\to\zephyr\scripts\west_commands && py.test"

Note that these tests are run as part of Zephyr's CI when submitting
an upstream pull request, and pull requests which break the tests
cannot be merged.

Thanks!