2019-08-27 15:45:45 +02:00
|
|
|
dist: xenial
|
|
|
|
language: python
|
|
|
|
python: 3.7
|
|
|
|
|
|
|
|
install:
|
2019-10-10 21:59:13 +02:00
|
|
|
- pip install flake8 kodi-addon-checker
|
2019-08-27 15:45:45 +02:00
|
|
|
|
|
|
|
before_script:
|
|
|
|
- git config core.quotepath false
|
|
|
|
|
|
|
|
# command to run our tests
|
|
|
|
script:
|
2019-12-04 18:38:25 +01:00
|
|
|
- flake8 ./ --statistics --show-source --builtins=sys --ignore=E501,E722 --exclude=croniter.py,relativedelta.py,*/dropbox/* # check python structure against flake8 tests, ignore long lines
|
2019-11-22 22:18:36 +01:00
|
|
|
- kodi-addon-checker --branch=matrix --allow-folder-id-mismatch
|