Files @ 82198c193c11
Branch filter:

Location: kallithea/tox.ini

Mads Kiilerich
helpers: improve html_escape

Repeated string replace is faster than iterating over each character in Python
and doing a dict lookup.
[tox]
envlist = py{26,27}-{pytest,nose}

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