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

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

before_script:
  - pipenv --version

variables:
  LC_ALL: "C.UTF-8"
  LANG: "C.UTF-8"
  a11y_urls: "https://scholar-qa.archive.org https://scholar-qa.archive.org/search?q=vision https://openlibrary.org https://archive.org/details/editionofoneauto0000powe"

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

include:
  - template: "Verify/Accessibility.gitlab-ci.yml"