1
0
forked from VimPlug/jedi

Configuration to run coveralls on py33

This commit is contained in:
Danilo Bargen
2013-04-10 16:30:32 +02:00
parent be7cecef00
commit 798136787f
3 changed files with 11 additions and 3 deletions

4
.gitignore vendored
View File

@@ -1,9 +1,11 @@
*~
*.swp
*.swo
*.pyc
.ropeproject
.tox
*.pyc
.coveralls.yml
.coverage
/build/
/docs/_build/
/dist/

View File

@@ -6,6 +6,7 @@ env:
- TOXENV=py32
- TOXENV=py33
install:
- pip install --quiet --use-mirrors tox
- pip install --quiet --use-mirrors tox coveralls
script:
- tox
- if [ $TOXENV == "py33" ]; then coveralls; fi

View File

@@ -4,7 +4,7 @@ envlist = py25, py26, py27, py32, py33
deps =
pytest
commands =
py.test []
py.test jedi
[testenv:py25]
deps =
simplejson
@@ -14,3 +14,8 @@ deps =
deps =
unittest2
{[testenv]deps}
[testenv:py33]
deps =
pytest-cov
commands =
py.test --cov jedi