From 27e1861001e46394aefc6aa1d87294a6bcd0eaad Mon Sep 17 00:00:00 2001 From: Tobias Gruetzmacher Date: Sat, 16 Apr 2016 23:24:07 +0200 Subject: [PATCH] Tox: Check __future__ imports in flake8 run. --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 767a4d92c..74d17e7f0 100644 --- a/tox.ini +++ b/tox.ini @@ -17,9 +17,11 @@ deps = Pillow flake8 flake8-coding + flake8-future-import [flake8] # we aim for 79, but this suppresses warnings for now... max-line-length = 120 -ignore = E121,E126,E241 +ignore = E121,E126,E241,FI12,FI14,FI15,FI50,FI51,FI53,FI54,FI55 exclude = build +require-code = True