summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2015-10-26 19:56:58 +0100
committerAndi Albrecht <albrecht.andi@gmail.com>2015-10-26 19:56:58 +0100
commitc6f210e65a9b9e91683e62134eb654d8c00a92d8 (patch)
treeb7f5146b2d9be8a6c0449756149f4dccd046ce5d
parent204afae5fc46e224c93637750db5cfa862707974 (diff)
downloadsqlparse-c6f210e65a9b9e91683e62134eb654d8c00a92d8.tar.gz
Add codechecks to tox configuration.
-rw-r--r--tox.ini7
1 files changed, 6 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 794e189..483427d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist=py27,py33,py34,py35,pypy,pypy3
+envlist=flake8,py27,py33,py34,py35,pypy,pypy3
[testenv]
deps=
@@ -8,3 +8,8 @@ deps=
commands=
sqlformat --version # Sanity check.
py.test --cov=sqlparse/ tests
+
+[testenv:flake8]
+basepython=python3.5
+deps=flake8
+commands=flake8 .