Skip to content

Commit

Permalink
Fix broken conditional in pythonpackage.yml GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed Aug 9, 2022
1 parent ae4eacf commit a51bca4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a51bca4

Please sign in to comment.