From c6f210e65a9b9e91683e62134eb654d8c00a92d8 Mon Sep 17 00:00:00 2001 From: Andi Albrecht Date: Mon, 26 Oct 2015 19:56:58 +0100 Subject: Add codechecks to tox configuration. --- tox.ini | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 . -- cgit v1.2.1