2015-10-01 23:16:19 +00:00
|
|
|
language: python
|
2017-06-27 11:15:41 -07:00
|
|
|
|
2015-10-02 22:20:53 +00:00
|
|
|
python:
|
2017-04-18 17:13:54 -07:00
|
|
|
- 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
|
|
|
|
|
2017-05-01 19:56:52 -07:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- python: nightly
|
|
|
|
- python: 3.7-dev
|
2018-09-17 13:24:59 -07:00
|
|
|
- python: 2.7
|
2018-09-17 13:28:36 -07:00
|
|
|
- python: pypy
|
2017-06-27 11:15:41 -07:00
|
|
|
|
2015-10-01 23:16:19 +00:00
|
|
|
services:
|
2017-04-18 17:13:54 -07:00
|
|
|
- docker
|
2017-06-27 11:15:41 -07:00
|
|
|
|
2015-10-02 22:20:53 +00:00
|
|
|
before_install:
|
2017-04-18 17:13:54 -07:00
|
|
|
- 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
|
|
|
|
2015-10-02 22:20:53 +00:00
|
|
|
install:
|
2018-09-17 13:24:59 -07:00
|
|
|
- pip install .[test]
|
2017-06-27 11:15:41 -07:00
|
|
|
|
2015-10-01 23:16:19 +00:00
|
|
|
script:
|
2017-04-18 17:13:54 -07:00
|
|
|
- py.test -v tests
|
2015-10-01 23:33:49 +00:00
|
|
|
|