Skip to content

Commit

Permalink
EFR32: Remove default install of py runner (#14354)
Browse files Browse the repository at this point in the history
It looks like this is causing build flake, removing default install of
the python runner until it can be properly debugged.
  • Loading branch information
rgoliver authored and pull[bot] committed Feb 20, 2024
1 parent 82b8aca commit 3709695
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
5 changes: 4 additions & 1 deletion src/test_driver/efr32/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,11 @@ efr32_executable("efr32_device_tests") {
}

group("efr32") {
deps = [ ":efr32_device_tests" ]
}

group("runner") {
deps = [
":efr32_device_tests",
"${efr32_project_dir}/py:nl_test_runner.install",
"${efr32_project_dir}/py:nl_test_runner_wheel",
]
Expand Down
15 changes: 10 additions & 5 deletions src/test_driver/efr32/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ This builds and runs the NLUnitTest on the efr32 device

<hr>

- [CHIP EFR32 Test Driver](#chip-efr32-test-driver)
- [Introduction](#introduction)
- [Building](#building)
- [Running The Tests](#running-the-tests)
- [Introduction](#introduction)
- [Building](#building)
- [Running The Tests](#running-the-tests)

<hr>

Expand Down Expand Up @@ -76,7 +75,13 @@ OR use GN/Ninja directly

## Running The Tests

The included python test runner will be installed as part of building.
Build the runner using gn:

$ gn gen out/debug
$ ninja -C out/debug runner

The runner will be installed into the venv and python wheels will be packaged in
the output folder for deploying.

- To run the tests:

Expand Down

0 comments on commit 3709695

Please sign in to comment.