File tree Expand file tree Collapse file tree 11 files changed +6459
-807
lines changed
generate_workflows_lib/src/generate_workflows_lib Expand file tree Collapse file tree 11 files changed +6459
-807
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 3939 - name: Install tox
4040 run: pip install tox-uv
4141
42+ - name: Setup tox with retry
43+ uses: nick-fields/retry@v2
44+ with:
45+ timeout_minutes: 2
46+ max_attempts: 3
47+ command: tox -e {{ job_data.tox_env }} --pkg-only
48+
4249 - name: Run tests
43- run: tox -e {{ job_data.tox_env }} -- -ra
50+ run: tox -e {{ job_data.tox_env }} --skip-pkg-install -- -ra
4451 {% - endfor %}
Original file line number Diff line number Diff line change 3232 - name: Install tox
3333 run: pip install tox-uv
3434
35+ - name: Setup tox with retry
36+ uses: nick-fields/retry@v2
37+ with:
38+ timeout_minutes: 10
39+ max_attempts: 3
40+ command: tox -e {{ job_data.tox_env }} --pkg-only
41+
3542 - name: Run tests
36- run: tox -e {{ job_data.tox_env }}
43+ run: tox -e {{ job_data.tox_env }} --skip-pkg-install
3744 {% - endfor %}
Original file line number Diff line number Diff line change 5959 - name: Install tox
6060 run: pip install tox-uv
6161
62+ - name: Setup tox with retry
63+ uses: nick-fields/retry@v2
64+ with:
65+ timeout_minutes: 10
66+ max_attempts: 3
67+ command: tox -e {{ job_data }} --pkg-only
68+
6269 - name: Run tests
63- run: tox -e {{ job_data }}
70+ run: tox -e {{ job_data }} --skip-pkg-install
6471 {% - if job_data == "generate-workflows" %}
6572
6673 - name: Check workflows are up to date
Original file line number Diff line number Diff line change @@ -31,12 +31,20 @@ jobs:
3131
3232 - name: Install tox
3333 run: pip install tox-uv
34+
35+ - name: Setup tox with retry
36+ uses: nick-fields/retry@v2
37+ with:
38+ timeout_minutes: 2
39+ max_attempts: 3
40+ command: tox -e {{ job_data.tox_env }} --pkg-only
41+
3442 {% - if job_data .os == "windows-latest" %}
3543
3644 - name: Configure git to support long filenames
3745 run: git config --system core.longpaths true
3846 {% - endif %}
3947
4048 - name: Run tests
41- run: tox -e {{ job_data.tox_env }} -- -ra
49+ run: tox -e {{ job_data.tox_env }} --skip-pkg-install -- -ra
4250 {% - endfor %}
You can’t perform that action at this time.
0 commit comments