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 2b6739e commit 5d6858aCopy full SHA for 5d6858a
.github/actions/run-tox/action.yml
@@ -23,7 +23,7 @@ runs:
23
shell: bash
24
- name: Run tox
25
run: |
26
- tox run -e "${{ inputs.tox-env }}" -- ${{ inputs.tox-args }}
+ tox run -e "${{ inputs.tox-env }}" -- ${{ inputs.tox-args }} || ret=$?
27
# errno 5 means all tests were filtered out, ignore
28
- ret=$? && [[ $ret -eq 5 ]] && exit 0; exit $ret
+ [[ "${ret:=0}" -eq 5 ]] && exit 0; exit $ret
29
0 commit comments