aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 7a1cbac25611ceab3084631a235b0ed6d3dfd2a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
image: debian:sid

before_script:
- apt-get update -y
- apt-get install -y python3-pip virtualenv

test_flake8:
  script:
    - virtualenv -p python3 venv
    - source venv/bin/activate
    - python --version
    - pip install -U -r requirements_devs.txt
    - flake8 .