28 lines
411 B
YAML
28 lines
411 B
YAML
language: python
|
|
|
|
python:
|
|
- '2.7'
|
|
- '3.5'
|
|
- '3.6'
|
|
- '3.7'
|
|
- '3.8'
|
|
|
|
os: linux
|
|
|
|
env:
|
|
PYTHONPATH: :test
|
|
PYTHONIOENCODING: utf-8
|
|
|
|
install:
|
|
- pip install -r requirements.txt
|
|
|
|
script:
|
|
- make check-pylint
|
|
- make check-tox
|
|
- make check-translations
|
|
- if [ "$TRAVIS_PYTHON_VERSION" == "3.8" ]; then pip install kodi-addon-checker && make check-addon; fi
|
|
- make test
|
|
|
|
after_success:
|
|
- codecov
|