Add travis pylint CI

This commit is contained in:
Sijmen Schoon 2016-11-14 11:22:14 +01:00
parent df535efdc1
commit 08c8a88721
2 changed files with 7 additions and 1 deletions

7
.travis.yml Normal file
View File

@ -0,0 +1,7 @@
language: python
python: ["3.5"]
install:
- "pip install -r requirements.txt"
- "pip install pylint"
script:
- "pylint app_service.py -E"

View File

@ -8,7 +8,6 @@ import html
import json
import logging
import mimetypes
import sys
from datetime import datetime
from time import time
from urllib.parse import unquote, quote, urlparse, parse_qs