mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
18 lines
294 B
YAML
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
|