veekun_pokedex/.travis.yml
2016-09-24 13:49:09 -07:00

18 lines
294 B
YAML

language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
services:
- postgresql
env:
- POKEDEX_DB_ENGINE=postgresql:///pokedex
sudo: false
install: pip install -e .
before_script:
- createdb -U postgres pokedex
- pokedex setup -v
script: py.test