We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff4e64d commit ee1977fCopy full SHA for ee1977f
.github/actions/run-tox/action.yml
@@ -24,4 +24,6 @@ runs:
24
- name: Run tox
25
run: |
26
tox run -e "${{ inputs.tox-env }}" -- ${{ inputs.tox-args }}
27
+ # errno 5 means all tests were filtered out, ignore
28
+ ret=$? && [[ $ret -eq 5 ]] && exit 0; exit $ret
29
shell: bash
0 commit comments