2016-10-17 03:41:26 +00:00
|
|
|
sudo: false
|
|
|
|
language: python
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.cache/pip
|
2017-03-27 16:01:07 +00:00
|
|
|
git:
|
|
|
|
submodules: false
|
2016-10-17 03:41:26 +00:00
|
|
|
|
2017-01-08 03:24:55 +00:00
|
|
|
matrix:
|
2017-01-08 03:32:54 +00:00
|
|
|
include:
|
|
|
|
- python: 2.7
|
|
|
|
env: TOXENV=py27
|
|
|
|
- python: 3.4
|
|
|
|
env: TOXENV=py34
|
|
|
|
- python: 3.5
|
|
|
|
env: TOXENV=py35
|
|
|
|
- python: 3.6
|
|
|
|
env: TOXENV=py36
|
|
|
|
- env: TOXENV=py37
|
|
|
|
python: nightly
|
|
|
|
allow_failures:
|
|
|
|
- python: nightly
|
2016-10-17 03:41:26 +00:00
|
|
|
|
2017-03-27 16:01:07 +00:00
|
|
|
before_install:
|
|
|
|
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
|
|
|
|
- git submodule update --init --recursive
|
|
|
|
|
2016-10-17 03:41:26 +00:00
|
|
|
install:
|
|
|
|
- pip install -U tox nose cython
|
|
|
|
|
|
|
|
script:
|
|
|
|
- tox -e $TOXENV
|