Skip to content

build(deps): bump pytest-cov from 6.2.1 to 7.0.0 #56

build(deps): bump pytest-cov from 6.2.1 to 7.0.0

build(deps): bump pytest-cov from 6.2.1 to 7.0.0 #56

Workflow file for this run

name: Run Tests
on: [push, pull_request]
permissions:
contents: read
checks: write
pull-requests: write
statuses: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Run pytest
run: |
pytest --cov=./ --cov-report=xml --junitxml=junit_report.xml -v
- name: Upload coverage report
uses: actions/upload-artifact@v4
if: always()
with:
name: coverage-report
path: |
junit_report.xml
coverage.xml
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: junit_report.xml