Skip to content

Pytest

Pytest #231

Workflow file for this run

name: Pytest
on:
push:
pull_request:
schedule:
- cron: "0 7 1-28/7 * *"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade -r requirements_test.txt
- name: Generate coverage report
run: |
python -m pytest --asyncio-mode=auto
pip install pytest-cov
pytest ./tests/ --cov=custom_components/nfl/ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1