mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
37 lines
599 B
YAML
37 lines
599 B
YAML
language: python
|
|
python:
|
|
- 3.5
|
|
- 3.4
|
|
- 2.7
|
|
- nightly
|
|
- pypy
|
|
- pypy3
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- python: pypy
|
|
- python: pypy3
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- python-gdbm
|
|
- python3-gdbm
|
|
- tor
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- sudo service docker restart ; sleep 10 # https://github.com/travis-ci/travis-ci/issues/4778
|
|
- docker run -d --publish=28015:28015 rethinkdb
|
|
|
|
before_script:
|
|
- pip install . pytest requests
|
|
|
|
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
|
|
|