Files @ 9c5e6984bd0e
Branch filter:

Location: kallithea/tox.ini - annotation

Marc Abramowitz
tox.ini: Set PYTHONHASHSEED = 0

because there is some non-deterministic stuff that can fail without this
[tox]
envlist = py{26,27}-{pytest,nose}

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