mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
24 lines
468 B
INI
24 lines
468 B
INI
[tox]
|
|
envlist = py26, py27, py32, py33
|
|
[testenv]
|
|
deps =
|
|
https://bitbucket.org/hpk42/pytest/get/c4f58165e0d4.zip
|
|
# docopt for sith doctests
|
|
docopt
|
|
commands =
|
|
py.test []
|
|
[testenv:py26]
|
|
deps =
|
|
unittest2
|
|
{[testenv]deps}
|
|
[testenv:cov]
|
|
deps =
|
|
coverage
|
|
{[testenv]deps}
|
|
commands =
|
|
coverage run --source jedi -m py.test
|
|
coverage report
|
|
[testenv:sith]
|
|
commands =
|
|
{envpython} sith.py --record {envtmpdir}/record.json random {posargs:jedi}
|