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 a848a93 commit 1670e10Copy full SHA for 1670e10
.github/workflows/build-test-package-publish.yml
@@ -52,8 +52,11 @@ jobs:
52
run: pipx install hatch
53
54
- name: Test Python Packages
55
- timeout-minutes: 30
56
- run: hatch run test.${{ matrix.robot-version }}:test "--junitxml=test-results/os-${{ matrix.os }}-py-${{ matrix.python-version }}-${{ matrix.robot-version }}/test-results.xml"
+ uses: nick-fields/retry@v3
+ with:
57
+ max_attempts: 3
58
+ timeout_minutes: 30
59
+ command: hatch run test.${{ matrix.robot-version }}:test "--junitxml=test-results/os-${{ matrix.os }}-py-${{ matrix.python-version }}-${{ matrix.robot-version }}/test-results.xml"
60
61
- name: Upload Test Results
62
if: always()
0 commit comments