From d137bfccef2ee8411fa3ff2cdfe8e02564aa2a61 Mon Sep 17 00:00:00 2001 From: Chris Kerr Date: Sun, 12 May 2019 09:10:41 +0200 Subject: [PATCH] Add flake8 to tox.ini --- tox.ini | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 1657e13..a6ded79 100644 --- a/tox.ini +++ b/tox.ini @@ -1,8 +1,12 @@ [tox] envlist = py27,py35,py37 [testenv] -deps=pytest -commands=pytest +deps = + flake8 + pytest +commands = + flake8 + pytest [flake8] exclude = build,dist,*.egg-info,.cache,.git,.tox,__pycache__