Files @ 102bbfe8af43
Branch filter:

Location: kallithea/tox.ini - annotation

Søren Løvborg
auth: remove redundant hashlib imports

hashlib is already imported at the top of the module (regardless of OS).
[tox]
envlist = py{26,27}-{pytest,nose}

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