mirror of
https://github.com/ilri/dspace-statistics-api.git
synced 2024-11-04 22:13:01 +01:00
Alan Orth
60689d9014
Makes for cleaner logs. See: https://docs.travis-ci.com/user/environment-variables/ See: https://man.sr.ht/builds.sr.ht/manifest.md
25 lines
786 B
YAML
25 lines
786 B
YAML
image: archlinux
|
|
packages:
|
|
- python-pipenv
|
|
- postgresql
|
|
sources:
|
|
- https://git.sr.ht/~alanorth/dspace-statistics-api
|
|
tasks:
|
|
- setup: |
|
|
id
|
|
psql --version
|
|
sudo su - postgres -c "initdb --locale en_US.UTF-8 -E UTF8 -D '/var/lib/postgres/data'"
|
|
sudo systemctl start postgresql
|
|
createuser -U postgres dspacestatistics
|
|
psql -U postgres -c "ALTER USER dspacestatistics WITH PASSWORD 'dspacestatistics'"
|
|
createdb -U postgres -O dspacestatistics --encoding=UNICODE dspacestatistics
|
|
cd dspace-statistics-api
|
|
psql -U postgres -d dspacestatistics < tests/dspacestatistics.sql
|
|
pipenv install --dev
|
|
- test: |
|
|
cd dspace-statistics-api
|
|
pipenv run pytest
|
|
environment:
|
|
PIPENV_NOSPIN: 'True'
|
|
PIPENV_HIDE_EMOJIS: 'True'
|