mirror of
https://github.com/ilri/dspace-statistics-api.git
synced 2024-11-16 03:17:04 +01:00
25 lines
603 B
YAML
25 lines
603 B
YAML
dist: bionic
|
|
language: python
|
|
python:
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8"
|
|
addons:
|
|
postgresql: "9.6"
|
|
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
|
|
env:
|
|
- PIPENV_NOSPIN=True
|
|
- PIPENV_HIDE_EMOJIS=True
|
|
|
|
# vim: ts=2 sw=2 et
|