adding new stuff
This commit is contained in:
parent
f84d7183aa
commit
9ef8a96f9a
1580 changed files with 0 additions and 0 deletions
47
plugins/bundle/jedi-vim/jedi/tox.ini
Normal file
47
plugins/bundle/jedi-vim/jedi/tox.ini
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
[tox]
|
||||
envlist = py26, py27, py33, py34, py35
|
||||
[testenv]
|
||||
deps =
|
||||
pytest>=2.3.5
|
||||
pytest-cache
|
||||
# docopt for sith doctests
|
||||
docopt
|
||||
# coloroma for colored debug output
|
||||
colorama
|
||||
setenv =
|
||||
# https://github.com/tomchristie/django-rest-framework/issues/1957
|
||||
# tox corrupts __pycache__, solution from here:
|
||||
PYTHONDONTWRITEBYTECODE=1
|
||||
commands =
|
||||
py.test {posargs:jedi test}
|
||||
[testenv:py26]
|
||||
deps =
|
||||
unittest2
|
||||
{[testenv]deps}
|
||||
[testenv:py27]
|
||||
deps =
|
||||
# for testing the typing module
|
||||
typing
|
||||
{[testenv]deps}
|
||||
[testenv:py33]
|
||||
deps =
|
||||
typing
|
||||
{[testenv]deps}
|
||||
[testenv:py34]
|
||||
deps =
|
||||
typing
|
||||
{[testenv]deps}
|
||||
[testenv:py35]
|
||||
deps =
|
||||
{[testenv]deps}
|
||||
[testenv:cov]
|
||||
deps =
|
||||
coverage
|
||||
{[testenv]deps}
|
||||
commands =
|
||||
coverage run --source jedi -m py.test
|
||||
coverage report
|
||||
[testenv:sith]
|
||||
commands =
|
||||
{envpython} -c "import os; a='{envtmpdir}'; os.path.exists(a) or os.makedirs(a)"
|
||||
{envpython} sith.py --record {envtmpdir}/record.json random {posargs:jedi}
|
||||
Loading…
Add table
Add a link
Reference in a new issue