From 8d44a2fdd6b3f175e594d98c014f2ce8d526be82 Mon Sep 17 00:00:00 2001 From: Michael Rupp <95718139+mykrupp@users.noreply.github.com> Date: Thu, 21 Sep 2023 16:14:56 -0400 Subject: [PATCH] Update silabs unit test driver README (#29380) * Update silabs unit test driver README * Restyled by prettier-markdown --------- Co-authored-by: Restyled.io --- src/test_driver/efr32/README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/test_driver/efr32/README.md b/src/test_driver/efr32/README.md index b23d98ba25c06a..97cbebf9e74889 100644 --- a/src/test_driver/efr32/README.md +++ b/src/test_driver/efr32/README.md @@ -70,7 +70,7 @@ OR use GN/Ninja directly cd ~/connectedhomeip/src/test_driver/efr32/ git submodule update --init source third_party/connectedhomeip/scripts/activate.sh - export EFR32_BOARD=BRD4161A + export SILABS_BOARD=BRD4161A gn gen out/debug ninja -C out/debug ``` @@ -104,6 +104,18 @@ Or build using build script from the root The runner will be installed into the venv and python wheels will be packaged in the output folder for deploying. +Then the python wheels need to installed using pip3. + + ``` + pip3 install out/debug/chip_nl_test_runner_wheels/*.whl + ``` + +Other python libraries may need to be installed such as + + ``` + pip3 install pyserial + ``` + - To run the tests: ```