You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.7 KiB
90 lines
2.7 KiB
[tox] |
|
minversion = 1.6 |
|
skipsdist = True |
|
envlist = py26,py27,py34,py27-zookeeper,py34-zookeeper,py27-redis,py34-redis,py27-memcached,py34-memcached,py27-postgresql,py34-postgresql,py27-mysql,py34-mysql,pep8 |
|
|
|
[testenv] |
|
deps = -r{toxinidir}/requirements.txt |
|
-r{toxinidir}/test-requirements.txt |
|
install_command = pip install -U {opts} {packages} |
|
usedevelop = True |
|
commands = python setup.py testr --slowest --testr-args="{posargs}" |
|
|
|
[testenv:venv] |
|
deps = -r{toxinidir}/requirements.txt |
|
-r{toxinidir}/test-requirements.txt |
|
commands = {posargs} |
|
|
|
[testenv:py27] |
|
deps = {[testenv]deps} |
|
doc8 |
|
commands = python setup.py testr --slowest --testr-args="{posargs}" |
|
{toxinidir}/run-examples.sh |
|
doc8 doc/source |
|
|
|
[testenv:py34] |
|
deps = -r{toxinidir}/requirements-py3.txt |
|
-r{toxinidir}/test-requirements.txt |
|
|
|
[testenv:py27-zookeeper] |
|
commands = {toxinidir}/setup-zookeeper-env.sh python setup.py testr --slowest --testr-args="{posargs}" |
|
|
|
[testenv:py34-zookeeper] |
|
deps = {[testenv:py34]deps} |
|
basepython = python3.4 |
|
commands = {toxinidir}/setup-zookeeper-env.sh python setup.py testr --slowest --testr-args="{posargs}" |
|
|
|
[testenv:py27-redis] |
|
commands = {toxinidir}/setup-redis-env.sh python setup.py testr --slowest --testr-args="{posargs}" |
|
|
|
[testenv:py34-redis] |
|
deps = {[testenv:py34]deps} |
|
basepython = python3.4 |
|
commands = {toxinidir}/setup-redis-env.sh python setup.py testr --slowest --testr-args="{posargs}" |
|
|
|
[testenv:py27-memcached] |
|
commands = {toxinidir}/setup-memcached-env.sh python setup.py testr --slowest --testr-args="{posargs}" |
|
|
|
[testenv:py34-memcached] |
|
deps = {[testenv:py34]deps} |
|
basepython = python3.4 |
|
commands = {toxinidir}/setup-memcached-env.sh python setup.py testr --slowest --testr-args="{posargs}" |
|
|
|
[testenv:py27-postgresql] |
|
commands = {toxinidir}/setup-postgresql-env.sh python setup.py testr --slowest --testr-args="{posargs}" |
|
|
|
[testenv:py34-postgresql] |
|
deps = {[testenv:py34]deps} |
|
basepython = python3.4 |
|
commands = {toxinidir}/setup-postgresql-env.sh python setup.py testr --slowest --testr-args="{posargs}" |
|
|
|
[testenv:py27-mysql] |
|
commands = {toxinidir}/setup-mysql-env.sh python setup.py testr --slowest --testr-args="{posargs}" |
|
|
|
[testenv:py34-mysql] |
|
deps = {[testenv:py34]deps} |
|
basepython = python3.4 |
|
commands = {toxinidir}/setup-mysql-env.sh python setup.py testr --slowest --testr-args="{posargs}" |
|
|
|
[testenv:cover] |
|
commands = python setup.py testr --slowest --coverage --testr-args="{posargs}" |
|
|
|
[testenv:docs] |
|
deps = {[testenv]deps} |
|
doc8 |
|
commands = doc8 doc/source |
|
python setup.py build_sphinx |
|
|
|
[testenv:pep8] |
|
deps = hacking>=0.9.2,<0.10 |
|
commands = |
|
flake8 |
|
|
|
[flake8] |
|
ignore = H405,E126 |
|
exclude=.venv,.git,.tox,dist,*egg,*.egg-info,build,examples,doc |
|
show-source = True |
|
|
|
[hacking] |
|
import_exceptions = six.moves |
|
unittest.mock
|
|
|