-
Notifications
You must be signed in to change notification settings - Fork 12
42 lines (38 loc) · 1.44 KB
/
ci-winnow-uts.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
name: Winnow CI
on:
push:
branches: [ development ]
pull_request:
branches: [ development]
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 'black~=20.8b1'
pip install -r requirements-winnow-unit-tests.txt
- name: Check formatting with black
run: |
# Check formatting of the dedup-app python files
black --line-length 120 --check *.py db winnow tests task_queue cli
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 winnow db tests task_queue cli --count --select=E9,F63,F7,F82 --show-source --statistics
# --ignore=E203 as it is not PEP8 and black style compliant. See: https://github.com/psf/black/issues/315
# Also --ignore=W503 as it is not compatible with black style.
flake8 winnow db tests task_queue cli --count --max-complexity=10 --ignore=E203,W503 --max-line-length=120 --statistics
- name: Test with pytest
run: |
export PYTHONPATH="$(pwd)"
pytest tests/winnow