Skip to content

Update pytest-cov requirement from ^4.1.0 to ^6.0.0 #139

Update pytest-cov requirement from ^4.1.0 to ^6.0.0

Update pytest-cov requirement from ^4.1.0 to ^6.0.0 #139

Workflow file for this run

name: Coverage
on:
push:
branches:
- main
pull_request:
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
pip install -r requirements.txt
PYTHONPATH=$PYTHONPATHPATH:. pytest --cov=rt1 --cov-report=xml tests/test_inference_server.py
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}