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