Add Codecov support #175
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: [push, pull_request] | |
jobs: | |
run-tests: | |
name: "Test (${{matrix.os}}, Python ${{ matrix.python-version }})" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python requirements | |
run: pip install --upgrade --upgrade-strategy eager . | |
- name: Install platform-specific requirements (Ubuntu) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt update | |
sudo apt install mkvtoolnix | |
- name: Install platform-specific requirements (macOS) | |
if: runner.os == 'macOS' | |
run: brew install mkvtoolnix | |
- name: Install platform-specific requirements (Windows) | |
if: runner.os == 'Windows' | |
run: | | |
choco install mkvtoolnix --no-progress --yes | |
Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1 | |
refreshenv | |
$mkvmergePath = (Get-Command mkvmerge).Source | |
$mkvtoolnixPath = Split-Path -Path $mkvmergePath -Parent | |
echo $mkvtoolnixPath | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
# We need to conserve mkvtoolnix in the PATH env variable. | |
# From https://stackoverflow.com/a/73981698/15835974 | |
- name: Install pytest and pytest-cov | |
run: | | |
pip install pytest | |
pip install pytest-cov | |
- name: Run tests | |
run: | | |
pytest | |
- name: Generate coverage report | |
run: | | |
pytest --cov=./ --cov-report=xml | |
- name: Print coverage report | |
run: | | |
pytest --cov=./ | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
env_vars: OS,PYTHON | |
fail_ci_if_error: true | |
file: ./coverage.xml | |
flags: unittests | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true |