1[tox]
2envlist = py26,py27,py32,py33,py34,pypy
3
4[testenv]
5deps =
6  -r{toxinidir}/requirements-optional-cpython.txt
7  flake8
8  nose
9commands =
10  {envbindir}/nosetests -q
11  {toxinidir}/flake8-run.sh
12install_command =
13  pip install {opts} {packages}
14
15[testenv:pypy]
16# lxml doesn't work and datrie doesn't make sense
17# (it's slower than the pure-python version)
18deps =
19  charade
20  flake8
21  Genshi
22  nose
23  six
24
25[testenv:py26]
26basepython = python2.6
27deps =
28  -r{toxinidir}/requirements-optional-2.6.txt
29  flake8
30  nose
31