зеркало из https://github.com/github/octokit.py.git
26 строки
369 B
YAML
26 строки
369 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.2"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
|
|
install:
|
|
# Coveralls 4.0 doesn't support Python 3.2
|
|
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi
|
|
- pip install coveralls
|
|
|
|
env:
|
|
global:
|
|
- TRAVIS="True"
|
|
|
|
script: ./script/test
|
|
|
|
after_success:
|
|
coveralls
|
|
|
|
notifications:
|
|
email: false
|