2015-07-11 05:00:13 +00:00
|
|
|
sudo: false
|
2014-11-09 23:28:46 +00:00
|
|
|
language: python
|
2015-12-18 17:07:34 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.cache/pip
|
|
|
|
# - "$HOME/virtualenv/python$TRAVIS_PYTHON_VERSION"
|
2014-11-09 23:28:46 +00:00
|
|
|
python:
|
2015-12-11 02:16:49 +00:00
|
|
|
- 3.4
|
|
|
|
- 3.5
|
2015-09-17 15:54:56 +00:00
|
|
|
install:
|
2015-12-28 02:04:38 +00:00
|
|
|
# Validate requirements_all.txt on Python 3.4
|
|
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then python3 setup.py -q develop 2>/dev/null; tput setaf 1; script/gen_requirements_all.py validate; fi
|
2015-09-17 15:54:56 +00:00
|
|
|
- script/bootstrap_server
|
2014-11-09 23:28:46 +00:00
|
|
|
script:
|
2015-09-17 07:35:26 +00:00
|
|
|
- script/cibuild
|
2015-12-17 17:15:56 +00:00
|
|
|
matrix:
|
|
|
|
fast_finish: true
|