Skip to content

Commit f1b954b

Browse files
committed
Fix condition in workflow
1 parent 311c982 commit f1b954b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/testsuite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ jobs:
5858
fi
5959
shell: bash
6060
- name: Install extra dependencies
61-
if: ${{ python-version != "3.12-dev" }}
61+
if: ${{ matrix.python-version != '3.12-dev' }}
6262
run: |
6363
pip install -r extra_requirements.txt
6464
shell: bash
6565
- name: Run unit tests with extra packages as non-root user
66-
if: ${{ python-version != "3.12-dev" }}
66+
if: ${{ matrix.python-version != '3.12-dev' }}
6767
run: |
6868
python -m pyfakefs.tests.all_tests
6969
shell: bash

0 commit comments

Comments
 (0)