1
mirror of https://github.com/home-assistant/core synced 2024-09-25 00:41:32 +02:00
ha-core/.travis.yml

18 lines
455 B
YAML
Raw Normal View History

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