warcprox/.travis.yml

37 lines
599 B
YAML
Raw Permalink Normal View History

2013-12-04 17:34:23 -08:00
language: python
python:
- 3.5
- 3.4
- 2.7
- nightly
- pypy
- pypy3
matrix:
allow_failures:
- python: pypy
- python: pypy3
2014-01-07 12:04:52 -08:00
addons:
apt:
packages:
- python-gdbm
- python3-gdbm
- tor
2014-01-07 12:04:52 -08:00
services:
- docker
2015-11-02 22:21:43 +00:00
before_install:
- sudo service docker restart ; sleep 10 # https://github.com/travis-ci/travis-ci/issues/4778
- docker run -d --publish=28015:28015 rethinkdb
2015-11-02 22:21:43 +00:00
2014-01-07 14:10:39 -08:00
before_script:
- pip install . pytest requests
2015-11-02 22:21:43 +00:00
script:
- py.test -v -s tests
- py.test -v -s --rethinkdb-servers=localhost tests tests
- py.test -v -s --rethinkdb-servers=localhost --rethinkdb-big-table tests
2013-12-04 17:34:23 -08:00