aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 2c9e90b518b1fcb298d641a83098cdbd9e0a21bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
image: ubuntu:focal
before_script:
  - apt update -qy
  - apt install -y --no-install-recommends python3-wheel python3.8 python3.8-venv python3.8-distutils python3-pytest git make pipenv
  - pipenv --version

variables:
  LC_ALL: "C.UTF-8"
  LANG: "C.UTF-8"
  PIPENV_VENV_IN_PROJECT: "true"

test_python:
  script:
    - pipenv install --dev --deploy
    - make test
    - make lint