Skip to content

Commit

Permalink
Fix 3.7 tests II
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjmcgrath committed Nov 22, 2023
1 parent d1a5201 commit eedae1f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,15 @@ jobs:
poetry self add "poetry-dynamic-versioning[plugin]"
- name: Run tests
if: ${{ matrix.python-version != '3.7' }}
run: |
poetry run pytest --cov=auth0 --cov-report=term-missing:skip-covered --cov-report=xml
- name: Run tests 3.7
# Skip async tests in 3.7
if: ${{ matrix.python-version == '3.7' }}
run: |
poetry run pytest auth0/test
# bwrap ${{ env.BUBBLEWRAP_ARGUMENTS }} bash

# - name: Run lint
Expand Down

0 comments on commit eedae1f

Please sign in to comment.