We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a89cb6 commit 0025d13Copy full SHA for 0025d13
.github/workflows/pytest.yaml
@@ -11,7 +11,7 @@ jobs:
11
runs-on: ubuntu-latest
12
strategy:
13
matrix:
14
- python-version: [3.8, 3.9]
+ python-version: ["3.10"]
15
16
steps:
17
- uses: actions/checkout@v2
@@ -23,10 +23,10 @@ jobs:
23
run: |
24
25
python -m pip install --upgrade pip
26
- pip install -r requirements_test.txt
+ pip install --upgrade -r requirements_test.txt
27
- name: Generate coverage report
28
29
- python -m pytest
+ python -m pytest --asyncio-mode=auto
30
pip install pytest-cov
31
pytest ./tests/ --cov=custom_components/nfl/ --cov-report=xml
32
- name: Upload coverage to Codecov
0 commit comments