23 lines
378 B
YAML
23 lines
378 B
YAML
sudo: false
|
|
language: python
|
|
cache: pip
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.5-dev"
|
|
- "3.6"
|
|
- "3.6-dev"
|
|
- "nightly"
|
|
install:
|
|
- pip install -U pip setuptools
|
|
- pip install tox-travis pre-commit
|
|
- pip install codecov
|
|
script:
|
|
- tox
|
|
- if [[ $TRAVIS_PYTHON_VERSION != 2.6 ]]; then pre-commit run --all-files; fi
|
|
after_success:
|
|
- codecov
|