Travis: Use flake8.

This commit is contained in:
Brandon Amos 2015-12-24 11:45:13 -05:00
parent dceb6a910b
commit 0469eba30f
1 changed files with 7 additions and 4 deletions

View File

@ -1,7 +1,10 @@
sudo: requires
services: [docker]
services:
- docker
language: python
python: ["2.7"]
python:
- "2.7"
before_install:
- docker pull bamos/openface
@ -13,7 +16,7 @@ before_install:
nosetests-2.7 -v -d test.py"
install:
- pip install pep8
- pip install flake8
script:
- pep8 --ignore=E402,E501 .
- flake8 --ignore=E402,E501 .