aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 709a4d93c78f3834e2f30755d6a5656702292925 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

# This image comes with:
# - ubuntu:xenial (what IA infrastructure runs circa spring 2020)
# - python3 dev setup
# - pipenv
image: "bnewbold/fatcat-test-base:xenial"

before_script:
  - 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