Skip to content

minor docstring change #18

minor docstring change

minor docstring change #18

Workflow file for this run

name: Coverage Report
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
coverage:
name: Generate Coverage Report
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: pip
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libmlpack-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
pip install pytest pytest-cov
- name: Run tests and collect coverage
run: |
pytest --cov=blockingpy --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.xml
fail_ci_if_error: true