General: Add travis linting

This commit is contained in:
Dylan Araps 2017-06-17 15:50:34 +10:00
parent 94d3a88b5a
commit 33a4f56e27
2 changed files with 12 additions and 0 deletions

10
.travis.yml Normal file
View File

@ -0,0 +1,10 @@
language: python
python:
- "3.6"
install:
- pip install -r requirements.txt
script:
- flake8 wal.py
- pylint wal.py

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
flake8
pylint