Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update silabs unit test driver README #29380

Merged
merged 2 commits into from
Sep 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion src/test_driver/efr32/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -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:

```
Expand Down
Loading