Skip to content

Commit 7a4799b

Browse files
tests: on_target: fix nightly more
Fix for nightly. Signed-off-by: Giacomo Dematteis <giacomo.dematteis@nordicsemi.no>
1 parent a3029e2 commit 7a4799b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/target-test.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
include:
4747
- device: cia-trd-thingy91x
4848
- device: ppk_thingy91x
49+
if: ${{ inputs.pytest_marker == 'no_markers_flag' || inputs.pytest_marker == 'not slow' || inputs.pytest_marker == 'slow' }}
4950

5051
# Self-hosted runner is labeled according to the device it is linked with
5152
runs-on: ${{ matrix.device }}
@@ -119,11 +120,11 @@ jobs:
119120
echo pytest -v "${pytest_marker_arg[@]}"
120121
121122
if [[ '${{ matrix.device }}' == 'ppk_thingy91x' ]]; then
122-
# For PPK device, only run test_power.py
123+
# For PPK device, only run tests/test_ppk
123124
pytest -v "${pytest_marker_arg[@]}" \
124125
--junit-xml=results/test-results.xml \
125126
--html=results/test-results.html --self-contained-html \
126-
tests/test_ppk/test_power.py
127+
tests/test_ppk
127128
else
128129
pytest -v "${pytest_marker_arg[@]}" \
129130
--junit-xml=results/test-results.xml \

0 commit comments

Comments
 (0)