Home | History | Annotate | Download | only in html5lib-python
      1 [tox]
      2 envlist = py26,py27,py32,py33,py34,pypy
      3 
      4 [testenv]
      5 deps =
      6   -r{toxinidir}/requirements-optional-cpython.txt
      7   flake8
      8   nose
      9 commands =
     10   {envbindir}/nosetests -q
     11   {toxinidir}/flake8-run.sh
     12 install_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)
     18 deps =
     19   charade
     20   flake8
     21   Genshi
     22   nose
     23   six
     24 
     25 [testenv:py26]
     26 basepython = python2.6
     27 deps =
     28   -r{toxinidir}/requirements-optional-2.6.txt
     29   flake8
     30   nose
     31