mirror of
https://github.com/Textualize/rich.git
synced 2025-12-23 07:08:35 +00:00
Fix broken conditional in pythonpackage.yml GitHub Action
This commit is contained in:
parent
ae4eacf32d
commit
a51bca4bf2
1 changed files with 2 additions and 2 deletions
4
.github/workflows/pythonpackage.yml
vendored
4
.github/workflows/pythonpackage.yml
vendored
|
|
@ -36,12 +36,12 @@ jobs:
|
|||
source $VENV
|
||||
make typecheck
|
||||
- name: Test with pytest (with coverage)
|
||||
if: matrix.python-version != '3.11.0-beta.4'
|
||||
if: matrix.python-version != '3.11.0-beta.5'
|
||||
run: |
|
||||
source $VENV
|
||||
pytest tests -v --cov=./rich --cov-report=xml:./coverage.xml --cov-report term-missing
|
||||
- name: Test with pytest (no coverage)
|
||||
if: matrix.python-version == '3.11.0-beta.4'
|
||||
if: matrix.python-version == '3.11.0-beta.5'
|
||||
run: |
|
||||
source $VENV
|
||||
pytest tests -v
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue