summaryrefslogtreecommitdiff
path: root/tox.ini
blob: e9f5575db8ec5bee361c1368c9edd466f22061a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[tox]
envlist=codechecks,py27,py32,py33,py34,pypy

[flake8]
ignore = E129

[testenv]
deps=
  pytest
  pytest-cov
commands=
  sqlformat --version  # Sanity check.
  py.test --cov=sqlparse/ tests

[testenv:codechecks]
deps=
  flake8
commands=
  flake8 sqlparse tests