Skip to content

Commit 8d34fbc

Browse files
committed
Ignore errno 5 for tox/pytest
Signed-off-by: Samuel Monson <[email protected]>
1 parent 6f3ab5b commit 8d34fbc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/actions/run-tox/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,6 @@ runs:
2424
- name: Run tox
2525
run: |
2626
tox run -e "${{ inputs.tox-env }}" -- ${{ inputs.tox-args }}
27+
# errno 5 means all tests were filtered out, ignore
28+
ret=$? && [[ $ret -eq 5 ]] && return 0; return $ret
2729
shell: bash

0 commit comments

Comments
 (0)