Skip to content

Commit a51bca4

Browse files
committed
Fix broken conditional in pythonpackage.yml GitHub Action
1 parent ae4eacf commit a51bca4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636
source $VENV
3737
make typecheck
3838
- name: Test with pytest (with coverage)
39-
if: matrix.python-version != '3.11.0-beta.4'
39+
if: matrix.python-version != '3.11.0-beta.5'
4040
run: |
4141
source $VENV
4242
pytest tests -v --cov=./rich --cov-report=xml:./coverage.xml --cov-report term-missing
4343
- name: Test with pytest (no coverage)
44-
if: matrix.python-version == '3.11.0-beta.4'
44+
if: matrix.python-version == '3.11.0-beta.5'
4545
run: |
4646
source $VENV
4747
pytest tests -v

0 commit comments

Comments
 (0)