view tox.ini @ 5265:8394211b1c32

AuthUser: refactor AuthUser cookie/session serialization * All serialization/deserialization logic is now in one place. * CookieStoreWrapper is gone; any login sessions established in 2012 or earlier will be terminated and users will have to log in again. * The term "cookie store" has been dropped in favor of simply "cookie" (the value is not a cookie "store" or data repository, but just the actual cookie/session serialization of AuthUser). Note: from_cookie_store was never used.
author Søren Løvborg <kwi@kwi.dk>
date Tue, 14 Jul 2015 14:00:15 +0200
parents 8c1258f69892
children 768989c595aa
line wrap: on
line source

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

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