warcprox/.travis.yml
2015-10-01 23:33:49 +00:00

16 lines
474 B
YAML

sudo: required
language: python
python:
- 2.7
- 3.4
- 3.5
- nightly
- pypy
services:
- docker
before_install:
- docker build -t internetarchive/rethinkdb tests
script:
- docker run --rm -i -t --volume="..:/rethinkstuff" internetarchive/rethinkdb /sbin/my_init -- bash -x -c "cd /rethinkstuff && virtualenv -p $python /tmp/venv && source /tmp/venv/bin/activate && pip install pytest . && py.test -v -s tests"