view tox.ini @ 6803:3fb0ce6de10d

celery: replace loader.PylonsSettingsProxy with a simple configuration object The proxy was quite complex and did all the conversion at runtime, making it hard to figure out exactly what it was doing. Instead, just create a simple configuration object as described on http://docs.celeryproject.org/en/3.1/userguide/application.html and convert all relevant config settings up front. We don't convert all config settings, but only the ones Celery seems to be interested in. The value conversion heuristics are the same as before and still seem quite fragile.
author Mads Kiilerich <mads@kiilerich.com>
date Sun, 13 Aug 2017 01:59:19 +0200
parents dd676fdeda0f
children ab30729c735c
line wrap: on
line source

[tox]
minversion = 1.8
envlist = py{26,27}-pytest

[testenv]
setenv =
    PYTHONHASHSEED = 0
deps =
    -r{toxinidir}/dev_requirements.txt
    py26-pytest: unittest2
    python-ldap
    python-pam
commands =
    pytest: py.test {posargs}