cChardet/.travis.yml
2017-03-28 01:01:07 +09:00

32 lines
573 B
YAML

sudo: false
language: python
cache:
directories:
- $HOME/.cache/pip
git:
submodules: false
matrix:
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
before_install:
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
install:
- pip install -U tox nose cython
script:
- tox -e $TOXENV