veekun_pokedex/.travis.yml

21 lines
327 B
YAML
Raw Normal View History

language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
2016-09-24 13:49:09 -07:00
services:
- postgresql
env:
- POKEDEX_DB_ENGINE=postgresql:///pokedex
sudo: false
2016-09-24 13:52:15 -07:00
install:
- pip install -e .
- pip install psycopg2
2016-09-24 13:49:09 -07:00
before_script:
- createdb -U postgres pokedex
- pokedex setup -v
script: py.test