We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1a5201 commit eedae1fCopy full SHA for eedae1f
1 file changed
.github/workflows/test.yml
@@ -72,8 +72,15 @@ jobs:
72
poetry self add "poetry-dynamic-versioning[plugin]"
73
74
- name: Run tests
75
+ if: ${{ matrix.python-version != '3.7' }}
76
run: |
77
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
84
# bwrap ${{ env.BUBBLEWRAP_ARGUMENTS }} bash
85
86
# - name: Run lint
0 commit comments