aboutsummaryrefslogtreecommitdiff
path: root/tox.ini
blob: 432d303f5d05bdc9dee4163752de10037031509e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[tox]
envlist = pep8, py27

[testenv]
install_command = pip install {opts} {packages}
deps = -r{toxinidir}/requirements.txt
sitepackages = True

[testenv:pep8]
deps = hacking
commands =
  flake8 {posargs}

[testenv:py27]
setenv =
  PYTHONHASHSEED = 0
commands =
  python setup.py nosetests --verbosity=3