75 lines
1.5 KiB
INI
75 lines
1.5 KiB
INI
[tox]
|
|
envlist = py26,py27,py33,py34,pypy,cover
|
|
|
|
[testenv]
|
|
basedeps = keyring
|
|
mock
|
|
pycrypto==2.6
|
|
webtest
|
|
nose
|
|
deps = {[testenv]basedeps}
|
|
django
|
|
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:docs]
|
|
basepython = python2.7
|
|
deps =
|
|
{[testenv:cover]deps}
|
|
python-gflags
|
|
pyyaml
|
|
sphinx
|
|
sphinx-rtd-theme
|
|
commands = {toxinidir}/scripts/build-docs
|
|
|
|
[testenv:pushdocs]
|
|
basepython = python2.7
|
|
deps =
|
|
{[testenv:docs]deps}
|
|
ghp-import
|
|
commands =
|
|
{toxinidir}/scripts/build-docs
|
|
{toxinidir}/scripts/push-docs
|
|
|
|
[testenv:py26]
|
|
basepython = python2.6
|
|
deps = {[testenv]basedeps}
|
|
django>=1.5,<1.6
|
|
pyopenssl==0.14
|
|
|
|
[testenv:py26openssl13]
|
|
basepython = python2.6
|
|
deps = {[testenv]basedeps}
|
|
django>=1.5,<1.6
|
|
pyopenssl<0.14
|
|
|
|
[testenv:py27openssl13]
|
|
basepython = python2.7
|
|
deps = {[testenv]basedeps}
|
|
django>=1.5,<1.6
|
|
pyopenssl<0.14
|