forked from custom-components/custom_updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (32 loc) · 932 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: python
stages:
- linting
- load
jobs:
include:
#Linting
- stage: linting
install: pip install pycodestyle
name: "Linting with pycodestyle"
python: "3.6"
script: find . -name \*.py -exec pycodestyle {} +
- stage: linting
install: pip install pydocstyle
name: "Linting with pydocstyle"
python: "3.6"
script: find . -name \*.py -exec pydocstyle {} +
- stage: linting
install: pip install pylint
name: "Linting with pylint"
python: "3.6"
script: find . -name \*.py -exec pylint --disable=F0401,W0613 {} +
- stage: linting
install: pip install pyflakes
name: "Linting with pyflakes"
python: "3.6"
script: find . -name \*.py -exec pyflakes {} +
- stage: linting
install: pip install flake8
name: "Linting with flake8"
python: "3.6"
script: find . -name \*.py -exec flake8 {} +