2016-08-15 22:00:34 -04:00
|
|
|
sudo: required
|
|
|
|
services:
|
2017-09-28 17:03:47 -04:00
|
|
|
- postgresql
|
2019-04-15 04:16:22 -04:00
|
|
|
- redis-server
|
2017-09-28 17:47:11 -04:00
|
|
|
addons:
|
2017-09-28 17:55:05 -04:00
|
|
|
postgresql: "9.4"
|
2016-06-27 16:48:54 -04:00
|
|
|
language: python
|
|
|
|
python:
|
2017-01-23 22:44:29 +01:00
|
|
|
- "3.5"
|
2016-06-27 16:48:54 -04:00
|
|
|
install:
|
|
|
|
- pip install -r requirements.txt
|
2018-06-27 17:24:48 +02:00
|
|
|
- pip install pycodestyle
|
2019-08-14 20:28:23 -04:00
|
|
|
- pip install coverage
|
2017-09-28 17:47:11 -04:00
|
|
|
before_script:
|
|
|
|
- psql --version
|
|
|
|
- psql -U postgres -c 'SELECT version();'
|
2016-06-27 16:48:54 -04:00
|
|
|
script:
|
|
|
|
- ./scripts/cibuild.sh
|