blob: 8a0ab54f30260cc2dd434a307ef411f00e67526c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
stages:
- accessibility
- test
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:
# This image comes with:
# - ubuntu:xenial (what IA infrastructure runs circa spring 2020)
# - python3 dev setup
# - pipenv
image: "bnewbold/fatcat-test-base:latest"
stage: test
before_script:
- pipenv --version
script:
- pipenv install --dev --deploy
- make test
include:
- template: "Verify/Accessibility.gitlab-ci.yml"
|