Files @ 64eba8fcde2b
Branch filter:

Location: kallithea/tox.ini

Søren Løvborg
AuthSettingsController: don't validate options for disabled plugins

If the user disables a plugin, any submitted settings for that plugin
should be disregarded (neither validated nor stored in the database).
[tox]
envlist = py{26,27}-{pytest,nose}

[testenv]
setenv =
    PYTHONHASHSEED = 0
deps =
    nose: nose
    pytest: pytest
commands =
    nose: nosetests {posargs}
    pytest: py.test {posargs}