Skip to content

Commit 3a34c46

Browse files
committed
Fix and in tox.yml, sigh
1 parent b075bb7 commit 3a34c46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tox.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
- name: Upload coverage data (2 of 3 attempts)
102102
id: codecov2
103103
continue-on-error: true
104-
if: ${{ startsWith(matrix.passed_name, 'py') }} and steps.codecov1.outcome == 'failure'
104+
if: ${{ startsWith(matrix.passed_name, 'py') and steps.codecov1.outcome == 'failure' }}
105105
uses: codecov/codecov-action@v4
106106
with:
107107
name: ${{ matrix.passed_name }}
@@ -111,7 +111,7 @@ jobs:
111111

112112
- name: Upload coverage data (3 of 3 attempts)
113113
id: codecov3
114-
if: ${{ startsWith(matrix.passed_name, 'py') }} and steps.codecov2.outcome == 'failure'
114+
if: ${{ startsWith(matrix.passed_name, 'py') and steps.codecov2.outcome == 'failure' }}
115115
uses: codecov/codecov-action@v4
116116
with:
117117
name: ${{ matrix.passed_name }}

0 commit comments

Comments
 (0)