repo.or.cz
/
mygpo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Migrate] Update episodes in PostgreSQL
[mygpo.git]
/
.travis.yml
blob
47c48b914543cfb68ad3637daae27e4eccf8d410
1
language: python
2
3
python:
4
- "2.7"
5
6
services:
7
- couchdb
8
- redis-server
9
10
install:
11
- pip install -r requirements.txt --allow-external argparse
12
13
before_script:
14
- psql -c 'create database mygpo_test;' -U postgres
15
16
script:
17
python manage.py test
18
19
env:
20
- DATABASE_URL="postgres://postgres@localhost/mygpo_test"