Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Clean up of imports in whole project #33

Clean up of imports in whole project

Clean up of imports in whole project #33

Workflow file for this run

name: CI
on:
push:
branches:
- nfdi4cat-main
pull_request:
branches:
- nfdi4cat-main
workflow_dispatch:
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
FORCE_COLOR: "1" # Make tool output pretty.
PIP_DISABLE_PIP_VERSION_CHECK: "1"
PIP_PROGRESS_BAR: "off"
jobs:
tests:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.10'
- '3.11'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pipx install poetry
python -VV
python -m pip install --upgrade pip setuptools wheel
poetry install
- name: Run tests & collect coverage
run: |
poetry run coverage run -p -m pytest
- name: Upload coverage data
uses: actions/upload-artifact@v3
with:
name: coverage-data
path: .coverage.*
coverage:
name: Combine & check coverage
needs: tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: python -m pip install --upgrade coverage[toml]
- name: Download data
uses: actions/download-artifact@v3
with:
name: coverage-data
# - name: Combine coverage data and fail if less than 100%
- name: Combine coverage data
run: |
python -m coverage combine
python -m coverage html --skip-covered --skip-empty
python -m coverage report
# python -m coverage report --fail-under=100
- name: Upload HTML report
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: html-report
path: .htmlcov