README.txt 825 B

12345678910111213141516171819202122232425
  1. This directory contains implementations for west commands which are
  2. tightly coupled to the zephyr tree. This includes the build, flash,
  3. and debug commands.
  4. Before adding more here, consider whether you might want to put new
  5. extensions in upstream west. For example, any commands which operate
  6. on the multi-repo need to be in upstream west, not here. Try to limit
  7. what goes in here to Zephyr-specific features.
  8. When extending this code, please keep the unit tests (in tests/) up to
  9. date. The mypy static type checker is also run on the runners package.
  10. To run these tests locally on Windows, run:
  11. py -3 run_tests.py
  12. On macOS and Linux:
  13. ./run_tests.py
  14. Note that these tests are run as part of Zephyr's CI when submitting
  15. an upstream pull request, and pull requests which break the tests
  16. cannot be merged.
  17. Thanks!