Skip to content

CI for python-commons (pip) #239

CI for python-commons (pip)

CI for python-commons (pip) #239

Workflow file for this run

name: CI for python-commons (pip)
on: [push]
defaults:
run:
working-directory: ./
jobs:
build:
strategy:
matrix:
python-version: [3.8]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies with Poetry
run: poetry install
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
poetry run -vvv flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
poetry run -vvv flake8 . --count --exit-zero --max-complexity=10 --statistics
- name: Run tests
run: |
poetry run python -m pytest --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml --cov=./ --cov-report=xml --cov-report=html --ignore=pythoncommons/test-scripts/
- name: Upload coverage
uses: codecov/codecov-action@v1
- name: Upload pytest test results
uses: actions/upload-artifact@v2
with:
name: pytest-results-${{ matrix.python-version }}
# Apparently, default working directory is only used by 'run' actions, see: https://stackoverflow.com/a/58231340/1106893
path: ./junit/test-results-${{ matrix.python-version }}.xml
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}