-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (42 loc) · 1.8 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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() }}