Skip to content

Commit 0025d13

Browse files
authored
Update pytest.yaml
1 parent 5a89cb6 commit 0025d13

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pytest.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.8, 3.9]
14+
python-version: ["3.10"]
1515

1616
steps:
1717
- uses: actions/checkout@v2
@@ -23,10 +23,10 @@ jobs:
2323
run: |
2424
2525
python -m pip install --upgrade pip
26-
pip install -r requirements_test.txt
26+
pip install --upgrade -r requirements_test.txt
2727
- name: Generate coverage report
2828
run: |
29-
python -m pytest
29+
python -m pytest --asyncio-mode=auto
3030
pip install pytest-cov
3131
pytest ./tests/ --cov=custom_components/nfl/ --cov-report=xml
3232
- name: Upload coverage to Codecov

0 commit comments

Comments
 (0)