blob: a572489ab5859899a8017aaf45f8f86d4c7cc7d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
image: debian:bullseye
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
|