mirror of
https://github.com/home-assistant/core.git
synced 2026-09-24 07:25:52 -05:00
* Hello Python 3.5 * Fix test * Fix tests * Fix never awaited block till done warnings
32 lines
612 B
YAML
32 lines
612 B
YAML
sudo: false
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libudev-dev
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- python: "3.5.3"
|
|
env: TOXENV=lint
|
|
- python: "3.5.3"
|
|
env: TOXENV=pylint
|
|
# - python: "3.5"
|
|
# env: TOXENV=typing
|
|
- python: "3.5.3"
|
|
env: TOXENV=py35
|
|
- python: "3.6"
|
|
env: TOXENV=py36
|
|
# - python: "3.6-dev"
|
|
# env: TOXENV=py36
|
|
# allow_failures:
|
|
# - python: "3.5"
|
|
# env: TOXENV=typing
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
install: pip install -U tox coveralls
|
|
language: python
|
|
script: travis_wait 30 tox --develop
|
|
after_success: coveralls
|