mirror of
https://github.com/ilri/dspace-statistics-api.git
synced 2024-11-16 19:37:04 +01:00
Alan Orth
cab9f16dbc
According to the build environment documentation we need to specify an OS of Linux in order to get a container instead of a VM. See: https://docs.travis-ci.com/user/reference/overview/
27 lines
610 B
YAML
27 lines
610 B
YAML
os: linux
|
|
arch: arm64
|
|
dist: bionic
|
|
language: python
|
|
python:
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8"
|
|
- master
|
|
jobs:
|
|
allow_failures:
|
|
- go: master
|
|
addons:
|
|
postgresql: "10"
|
|
before_script:
|
|
- psql --version
|
|
- createuser -U postgres dspacestatistics
|
|
- psql -U postgres -c "ALTER USER dspacestatistics WITH PASSWORD 'dspacestatistics'"
|
|
- createdb -U postgres -O dspacestatistics --encoding=UNICODE dspacestatistics
|
|
- psql -U postgres -d dspacestatistics < tests/dspacestatistics.sql
|
|
install:
|
|
- "pip install -r requirements.txt"
|
|
- "pip install -r requirements-dev.txt"
|
|
script: pytest
|
|
|
|
# vim: ts=2 sw=2 et
|