Skip to content

Commit 027a754

Browse files
committed
Fix tests check
1 parent f4fa1db commit 027a754

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pytest-builds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ jobs:
3131
curl https://sh.rustup.rs -sSf | sh -s -- -y
3232

3333
- name: Install dependencies (!= 3.14)
34-
if: ${{ matrix.python-version }} != '3.14'
34+
if: ${{ matrix.python-version != '3.14' }}
3535
run: |
3636
pip install --upgrade pip
3737
pip install setuptools-rust pytest pydicom coverage pytest-cov
3838
pip install git+https://github.com/pydicom/pylibjpeg-data
3939
pip install -e .
4040
4141
- name: Install dependencies (== 3.14)
42-
if: ${{ matrix.python-version }} == '3.14'
42+
if: ${{ matrix.python-version == '3.14' }}
4343
run: |
4444
pip install --upgrade pip
4545
pip install setuptools-rust pytest coverage pytest-cov

0 commit comments

Comments
 (0)