Fix tester.yml coverage

This commit is contained in:
Nicola Demo
2025-03-19 17:59:50 +01:00
committed by GitHub
parent 0763e7c054
commit 69283e7fde

View File

@@ -59,6 +59,11 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install .[test]
- name: Generate coverage report - name: Generate coverage report
run: | run: |
python3 -m pytest --cov-report term --cov-report xml:cobertura.xml --cov=pina python3 -m pytest --cov-report term --cov-report xml:cobertura.xml --cov=pina
@@ -70,4 +75,4 @@ jobs:
threshold: 80.123 threshold: 80.123
fail: true fail: true
publish: true publish: true
coverage-summary-title: "Code Coverage Summary" coverage-summary-title: "Code Coverage Summary"