Files
deb-python-oauth2client/tox.ini
Craig Citro ec26d89ce1 Finish switching to mock from mox.
This cleans up a few tests to finish the mox -> mock transition. Fixes #102.
2014-12-19 15:17:17 -08:00

48 lines
1.0 KiB
INI

[tox]
envlist = py26,py27,py33,py34,pypy,cover
[testenv]
basedeps = keyring
mock
pycrypto==2.6
django>=1.5,<1.6
webtest
nose
deps = {[testenv]basedeps}
pyopenssl==0.14
setenv = PYTHONPATH=../google_appengine
commands = nosetests --ignore-files=test_appengine\.py {posargs}
# whitelist
branches:
only:
- master
- python3
[testenv:cover]
basepython = python2.7
commands =
nosetests --with-xunit --with-xcoverage --cover-package=oauth2client --nocapture --cover-erase --cover-tests --cover-branches --ignore-files=test_appengine\.py --cover-min-percentage=60
deps = {[testenv]deps}
coverage
nosexcover
[testenv:coveralls]
basepython = {[testenv:cover]basepython}
commands =
{[testenv:cover]commands}
coveralls
deps =
{[testenv:cover]deps}
coveralls
[testenv:py26openssl13]
basepython = python2.6
deps = {[testenv]basedeps}
pyopenssl<0.14
[testenv:py27openssl13]
basepython = python2.7
deps = {[testenv]basedeps}
pyopenssl<0.14