orgoro / coverage

GitHub Action for python coverage publish & analysis

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python Coverage: The Esential Coverage Reporter GitHub Action for python

β˜‚οΈ parse and publish coverage xml to a PR, enforce coverage rate on new & modified files

Usage

Create a new workflow .yml file in the .github/workflows/ directory.

You can create a coverage report using python:

  • pytest $ pytest --cov-report xml:path/to/coverage.xml
  • coverage $ coverage xml path/to/coverage.xml

Minimal Configuration

name: 'coverage'
on:
    pull_request:
        branches:
            - master
            - main
jobs:
    coverage:
        runs-on: ubuntu-latest
        steps:
          - name: Get Cover 
            uses: orgoro/coverage@v3.1
            with:
                coverageFile: path/to/coverage.xml
                token: ${{ secrets.GITHUB_TOKEN }}

PR Message & Job Summary πŸ†•

message

Inputs

Input Optional Description Example
coverageFile path to .xml coverage report ./path/to/coverage.xml
token your github token 🀫
thresholdAll βœ… the minimal average line coverage 0.8
thresholdNew βœ… the minimal average new files line coverage 0.9
thresholdModified βœ… the minimal average modified files line coverage 0.0
passIcon βœ… the indicator to use for files that passed 🟒
failIcon βœ… the indicator to use for files that failed πŸ”΄

About

GitHub Action for python coverage publish & analysis

License:MIT License


Languages

Language:TypeScript 98.6%Language:JavaScript 1.4%