From 9451a9ab43e394761c7e73ee9e5db54f65d6654b Mon Sep 17 00:00:00 2001 From: noah morrison Date: Thu, 9 Apr 2015 16:50:08 -0400 Subject: [PATCH] Use flake8 instead of pep8 in travis --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 610d6a9..00fb9a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,10 +6,10 @@ python: - "3.3" - "3.4" install: - - pip install pep8 + - pip install flake8 - pip install coveralls script: - - pep8 . + - flake8 . - ./test_spec.py - coverage -x ./test_spec.py after_success: -- 2.47.3