warcprox/.travis.yml

35 lines
523 B
YAML
Raw Normal View History

2015-10-01 23:16:19 +00:00
language: python
2017-06-27 11:15:41 -07:00
python:
- 3.6
- 3.5
- 3.4
- 2.7
- 3.7-dev
- nightly
- pypy
- pypy3
2017-06-27 11:15:41 -07:00
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
2017-06-27 11:15:41 -07:00
2015-10-01 23:16:19 +00:00
services:
- docker
2017-06-27 11:15:41 -07: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
2017-06-27 11:15:41 -07:00
install:
- pip install .[test]
2017-06-27 11:15:41 -07:00
2015-10-01 23:16:19 +00:00
script:
- py.test -v tests
2015-10-01 23:33:49 +00:00