diff options
| author | Andi Albrecht <albrecht.andi@gmail.com> | 2015-10-26 19:56:58 +0100 |
|---|---|---|
| committer | Andi Albrecht <albrecht.andi@gmail.com> | 2015-10-26 19:56:58 +0100 |
| commit | c6f210e65a9b9e91683e62134eb654d8c00a92d8 (patch) | |
| tree | b7f5146b2d9be8a6c0449756149f4dccd046ce5d | |
| parent | 204afae5fc46e224c93637750db5cfa862707974 (diff) | |
| download | sqlparse-c6f210e65a9b9e91683e62134eb654d8c00a92d8.tar.gz | |
Add codechecks to tox configuration.
| -rw-r--r-- | tox.ini | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 . |
