2019-11-14 22:57:46 +01:00
|
|
|
dist: bionic
|
2018-09-25 10:08:01 +02:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "3.6"
|
2019-02-07 16:41:36 +01:00
|
|
|
- "3.7"
|
2019-11-14 23:46:04 +01:00
|
|
|
- "3.8"
|
2018-11-11 15:38:02 +01:00
|
|
|
addons:
|
2019-03-17 22:28:06 +01:00
|
|
|
postgresql: "9.6"
|
2018-11-11 15:35:28 +01:00
|
|
|
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
|
2018-11-11 15:13:30 +01:00
|
|
|
install:
|
2019-11-14 23:46:58 +01:00
|
|
|
- "pip install -r requirements.txt"
|
|
|
|
- "pip install -r requirements-dev.txt"
|
2018-11-11 15:13:30 +01:00
|
|
|
script: pytest
|
2018-09-25 10:08:01 +02:00
|
|
|
|
|
|
|
# vim: ts=2 sw=2 et
|