mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 09:54:27 +00:00
Split up requirements.txt into several files so that CI tools can utilize/reference the specific requirements-<FOO>.txt they may need while keep things in sync with the development. This is to reduce both time and amount of work CI actions due to python package install. Create the following groupings: 1. BASE - needed to build or create zephyr images 2. BUILD-TEST - need to run compile/build tests 3. DOC - need to build the docs 4. RUN-TEST - need for runtime testing 5. EXTRAS - optional or useful for development/developers workflow Also tried to add a comment about what or why a given package is being pulled in for. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
13 lines
276 B
Plaintext
13 lines
276 B
Plaintext
# RUN-TEST: required to do run time tests of zephyr
|
|
#
|
|
# things used by sanitycheck or related in run time testing
|
|
|
|
# used to connect to boards for console IO
|
|
pyserial
|
|
|
|
# used to flash & debug various boards
|
|
pyocd>=0.24.0
|
|
|
|
# used by sanitycheck for board/hardware map
|
|
tabulate
|