mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
22fd4ec722
* Make compatible with python 3 * Update travis * Env * Fix typo * Fix install correct platformio * Lint * Fix build flags * Lint * Upgrade pylint * Lint
30 lines
1.1 KiB
YAML
30 lines
1.1 KiB
YAML
sudo: false
|
|
language: python
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- python: "2.7"
|
|
env: TARGET=Lint2.7
|
|
install: pip install -e . && pip install flake8==3.6.0 pylint==1.9.4 tzlocal pillow
|
|
script:
|
|
- flake8 esphomeyaml
|
|
- pylint esphomeyaml
|
|
- python: "3.5.3"
|
|
env: TARGET=Lint3.5
|
|
install: pip install -U https://github.com/platformio/platformio-core/archive/develop.zip && pip install -e . && pip install flake8==3.6.0 pylint==2.2.2 tzlocal pillow
|
|
script:
|
|
- flake8 esphomeyaml
|
|
- pylint esphomeyaml
|
|
- python: "2.7"
|
|
env: TARGET=Test2.7
|
|
install: pip install -e . && pip install flake8==3.6.0 pylint==1.9.4 tzlocal pillow
|
|
script:
|
|
- esphomeyaml tests/test1.yaml compile
|
|
- esphomeyaml tests/test2.yaml compile
|
|
- python: "3.5.3"
|
|
env: TARGET=Test3.5
|
|
install: pip install -U https://github.com/platformio/platformio-core/archive/develop.zip && pip install -e . && pip install flake8==3.6.0 pylint==2.2.2 tzlocal pillow
|
|
script:
|
|
- esphomeyaml tests/test1.yaml compile
|
|
- esphomeyaml tests/test2.yaml compile
|