Skip to content

fix: skip debian components to find github urls #166

fix: skip debian components to find github urls

fix: skip debian components to find github urls #166

Workflow file for this run

# This workflow will install Python dependencies and run the tests.
# Copyright (c) 2021-2023 Siemens
# Author: thomas.graf@siemens.com
# SPDX-License-Identifier: MIT
name: Unit Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
# update pip
python -m pip install --upgrade pip
# install poetry
python -m pip install poetry
# install all dependencies using poetry
poetry install --no-root
- name: Test with pytest
run: |
poetry run coverage run -m pytest
poetry run coverage report -m --omit "*/site-packages/*.py",*/tests/*
poetry run coverage html --omit "*/site-packages/*.py",*/tests/*
poetry run coverage xml
- name: Code Coverage Summary Report
uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: coverage.xml
badge: true
fail_below_min: true
format: markdown
hide_branch_rate: false
hide_complexity: true
indicators: true
output: both
thresholds: '50 75'
- name: Write to Job Summary
run: |
cat code-coverage-results.md >> $GITHUB_STEP_SUMMARY
- name: Create test coverage badge
uses: gaelgirodon/ci-badges-action@v1
with:
gist-id: c8f15831ecdcf6e86ab2b69cbb2d4f89
token: ${{ secrets.GIST_TOKEN }}