mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-16 02:27:06 +08:00
23 lines
319 B
INI
23 lines
319 B
INI
[tox]
|
|
envlist = py25, py26, py27, py32, py33
|
|
[testenv]
|
|
deps =
|
|
pytest
|
|
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 []
|