Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,7 @@ jobs:
working-directory: ports/zephyr-cp/tools/bsim
- name: Build native_nrf5340bsim
run: make -C ports/zephyr-cp -j2 BOARD=native_nrf5340bsim
- name: Build native_nrf54lm20bsim
run: make -C ports/zephyr-cp -j2 BOARD=native_nrf54lm20bsim
- name: Run Zephyr tests
run: make -C ports/zephyr-cp test
1 change: 1 addition & 0 deletions ports/zephyr-cp/tests/bsim/test_bsim_ble_advertising.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@

@pytest.mark.zephyr_sample("tests/bsim/samples/observer")
@pytest.mark.circuitpy_drive({"code.py": BSIM_ADV_CODE})
@pytest.mark.duration(60)
def test_bsim_advertise_and_scan(bsim_phy, circuitpython, zephyr_sample):
"""Advertise from CircuitPython and verify Zephyr observer sees traffic."""
observer = zephyr_sample
Expand Down
2 changes: 1 addition & 1 deletion ports/zephyr-cp/tests/bsim/test_bsim_ble_peripheral.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def test_bsim_peripheral_zephyr_central(bsim_phy, circuitpython, zephyr_sample):
assert "Disconnected:" in central_output


@pytest.mark.duration(14)
@pytest.mark.duration(20)
@pytest.mark.circuitpy_drive({"code.py": BSIM_PERIPHERAL_CODE})
@pytest.mark.circuitpy_drive({"code.py": BSIM_CENTRAL_CODE})
def test_bsim_peripheral_cp_central(bsim_phy, circuitpython1, circuitpython2):
Expand Down
Loading