Skip to content

Commit eedae1f

Browse files
committed
Fix 3.7 tests II
1 parent d1a5201 commit eedae1f

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,15 @@ jobs:
7272
poetry self add "poetry-dynamic-versioning[plugin]"
7373
7474
- name: Run tests
75+
if: ${{ matrix.python-version != '3.7' }}
7576
run: |
7677
poetry run pytest --cov=auth0 --cov-report=term-missing:skip-covered --cov-report=xml
78+
79+
- name: Run tests 3.7
80+
# Skip async tests in 3.7
81+
if: ${{ matrix.python-version == '3.7' }}
82+
run: |
83+
poetry run pytest auth0/test
7784
# bwrap ${{ env.BUBBLEWRAP_ARGUMENTS }} bash
7885

7986
# - name: Run lint

0 commit comments

Comments
 (0)