aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 3c9fb211130024030c81273e2eded93c587c841d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
image: "python:3.7"

# setup environemnt
before_script:
  - python --version
  - pip install -r requirements.txt
  - pip install flake8

stages:
  - Static Analysis

flake8:
  stage: Static Analysis
  script:
  - flake8 --count --select=E9,F63,F7,F82 --show-source --statistics
  - flake8 --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics