ha-core/.travis.yml

36 lines
727 B
YAML
Raw Normal View History

sudo: false
2019-12-07 07:34:46 +01:00
dist: bionic
addons:
apt:
packages:
- libudev-dev
- libavformat-dev
- libavcodec-dev
- libavdevice-dev
- libavutil-dev
- libswscale-dev
- libswresample-dev
- libavfilter-dev
sources:
- sourceline: ppa:savoury1/ffmpeg4
matrix:
fast_finish: true
include:
2019-12-16 07:29:19 +01:00
- python: "3.7.0"
env: TOXENV=lint
2019-12-16 07:29:19 +01:00
- python: "3.7.0"
env: TOXENV=pylint PYLINT_ARGS=--jobs=0 TRAVIS_WAIT=30
2019-12-16 07:29:19 +01:00
- python: "3.7.0"
env: TOXENV=typing
2019-12-16 07:29:19 +01:00
- python: "3.7.0"
env: TOXENV=py37
2019-10-18 21:20:27 +02:00
cache:
pip: true
directories:
- $HOME/.cache/pre-commit
install: pip install -U tox
language: python
script: ${TRAVIS_WAIT:+travis_wait $TRAVIS_WAIT} tox --develop