Fix broken conditional in pythonpackage.yml GitHub Action

This commit is contained in:
Darren Burns 2022-08-09 13:22:51 +01:00
parent ae4eacf32d
commit a51bca4bf2

View file

@ -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