language: python
python:
- "3.6"
addons:
postgresql: "9.6"
apt:
packages:
- language-pack-de
services:
- redis-server
install:
- "pip install --upgrade pip"
- "pip install --upgrade pytest"
- "pip install -r requirements.txt -r requirements-test.txt"
before_script:
- psql -U postgres -c "CREATE DATABASE byceps_test;"
- psql -U postgres -c "CREATE ROLE byceps_test WITH LOGIN PASSWORD 'test';"
script:
- "pytest"
dist: trusty
sudo: false
notifications:
email: false