From c951a365b7e8696aa93c2f5aa8e0f2c0f1c84328 Mon Sep 17 00:00:00 2001 From: Clayton Burlison Date: Wed, 26 Apr 2017 10:27:04 -0500 Subject: [PATCH] fix: Add basic PEP8 back into travis ci (#758) --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bb0db805..2afb300d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,8 @@ +sudo: no language: python python: - "2.7" install: - pip install flake8 pep8 script: - - python tests/travisci.py + - git diff HEAD^ | flake8 --diff --ignore=E501