diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d839ea47..fdcd08cd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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