Skip to content
Open
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
7 changes: 5 additions & 2 deletions .github/workflows/run-zephyr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
pytest_args: tests/ --ignore=tests/bsim
- shard: nrf5340bsim
boards: native_nrf5340bsim
pytest_args: tests/bsim -k native_nrf5340bsim
pytest_args: tests/bsim -k native_nrf5340bsim -n 2 --dist loadfile
- shard: nrf54lm20bsim
boards: native_nrf54lm20bsim
pytest_args: tests/bsim -k native_nrf54lm20bsim
pytest_args: tests/bsim -k native_nrf54lm20bsim -n 2 --dist loadfile
env:
CP_VERSION: ${{ inputs.cp-version }}
steps:
Expand All @@ -50,6 +50,9 @@ jobs:
target: zephyr-cp
- name: Set up external
uses: ./.github/actions/deps/external
- name: Install pytest-xdist
if: contains(matrix.shard, 'bsim')
run: pip install pytest-xdist
- name: Build bsim
if: contains(matrix.shard, 'bsim')
run: make -j $(nproc) everything
Expand Down
Loading