aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-09-28 07:59:39 +0200
committerDaniel Lobato García <me@daniellobato.me>2016-09-28 07:59:39 +0200
commit3cbbdc6a6eefddbb085cea8f3397e64fb6f1f5d6 (patch)
treef558c3af45548ce62d13c9cccdcec9f7911280a6
parent431bd325775a1c11eba425305a3f7e505df7c89a (diff)
Run flake8 to verify style
-rw-r--r--.travis.yml4
-rw-r--r--requirements.txt1
2 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 48ff6a4..1caed6a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,4 +2,6 @@ language: python
python:
- "2.7"
install: "pip install -r requirements.txt"
-script: nosetests --verbosity=3
+script:
+ - flake8
+ - nosetests --verbosity=3
diff --git a/requirements.txt b/requirements.txt
index 8ebf0ae..5b79bc0 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,3 +1,4 @@
nose
requests
responses
+flake8>=3