From 609c9b2da294624c0599a83bfe5de550f502bc68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Guillot?= Date: Tue, 18 Apr 2017 13:58:34 -0400 Subject: [PATCH] Add flake8 test to travis.yml --- .travis.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index c50f9c0..64146d6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,17 @@ language: python + python: -- '2.7' -- '3.4' + - '2.7' + - '3.4' + install: -- pip install -r requirements.txt -- pip install -r test-requirements.txt -script: nosetests + - pip install -r requirements.txt + - pip install -r test-requirements.txt + +script: + - nosetests + - flake8 + deploy: provider: pypi user: internaphosting