mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
35 lines
523 B
YAML
35 lines
523 B
YAML
language: python
|
|
|
|
python:
|
|
- 3.6
|
|
- 3.5
|
|
- 3.4
|
|
- 2.7
|
|
- 3.7-dev
|
|
- nightly
|
|
- pypy
|
|
- pypy3
|
|
|
|
group: deprecated-2017Q2 # https://blog.travis-ci.com/2017-06-21-trusty-updates-2017-Q2-launch
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- python: nightly
|
|
- python: 3.7-dev
|
|
- python: 2.7
|
|
- python: pypy
|
|
|
|
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
|
|
|
|
install:
|
|
- pip install .[test]
|
|
|
|
script:
|
|
- py.test -v tests
|
|
|