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 *.swp
*.swo *.swo
*.pyc
.ropeproject .ropeproject
.tox .tox
*.pyc .coveralls.yml
.coverage
/build/ /build/
/docs/_build/ /docs/_build/
/dist/ /dist/

View File

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

View File

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