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 25ee95f commit 10b2f67Copy full SHA for 10b2f67
.github/workflows/testsuite.yml
@@ -44,7 +44,26 @@ jobs:
44
python -m site
45
python -m pip install -r requirements/ci.pip
46
47
- - name: "Run tox targets for ${{ matrix.python-version }}"
+ - name: "Run tox for ${{ matrix.python-version }}"
48
shell: bash
49
+ continue-on-error: true
50
+ id: tox1
51
run: |
52
python -m tox
53
+
54
+ - name: "Retry tox for ${{ matrix.python-version }}"
55
+ shell: bash
56
+ id: tox2
57
+ if: steps.tox1.outcome == 'failure'
58
+ run: |
59
+ python -m tox
60
61
+ - name: "Set status"
62
63
+ if: always()
64
65
+ if ${{ steps.tox1.outcome == 'success' || steps.tox2.outcome == 'success' }}; then
66
+ echo success
67
+ else
68
+ exit 1
69
+ fi
0 commit comments