Skip to content

Make coverage HTML report available on CI failure #173

Make coverage HTML report available on CI failure

Make coverage HTML report available on CI failure #173

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: htmd
on: [ push, pull_request ]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1
with:
src: "./htmd ./tests"
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install coverage pytest
python -m pip install .
- name: Tests
run: |
coverage run --branch -m pytest
coverage html --omit='/tmp/*'
coverage report --omit='/tmp/*' --fail-under=100
- name: Archive code coverage results
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: code-coverage-report-${{ matrix.python-version }}
path: htmlcov/