mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-28 16:06:50 +08:00
22 lines
439 B
INI
22 lines
439 B
INI
[tox]
|
|
envlist = py25, py26, py27, py32
|
|
[testenv]
|
|
setenv =
|
|
XDG_CACHE_HOME={envtmpdir}/cache
|
|
deps =
|
|
pytest
|
|
commands =
|
|
py.test []
|
|
# Doctests can't be run with the main tests because then py.test
|
|
# tries to import broken python files under test/*/.
|
|
py.test --doctest-modules {toxinidir}/jedi
|
|
[testenv:py25]
|
|
deps =
|
|
simplejson
|
|
unittest2
|
|
{[testenv]deps}
|
|
[testenv:py26]
|
|
deps =
|
|
unittest2
|
|
{[testenv]deps}
|