1
0
forked from VimPlug/jedi
Files
jedi-fork/tox.ini
Danilo Bargen df468d3f38 Use dev version of pytest.
This should fix some issues with testing under py32, see
https://bitbucket.org/hpk42/pytest/issue/274/internalerror-when-running-doctest
2013-04-27 15:40:58 +02:00

23 lines
368 B
INI

[tox]
envlist = py25, py26, py27, py32, py33
[testenv]
deps =
https://bitbucket.org/hpk42/pytest/get/c4f58165e0d4.zip
commands =
py.test []
[testenv:py25]
deps =
simplejson
unittest2
{[testenv]deps}
[testenv:py26]
deps =
unittest2
{[testenv]deps}
[testenv:cov]
deps =
pytest-cov
{[testenv]deps}
commands =
py.test --cov jedi []