Files @ d04e36ef71a8
Branch filter:

Location: kallithea/tox.ini

Mads Kiilerich
data_table: use simple 'escape' function instead of 'tooltip' function

The values will end up being double escaped when h.escape is used in template
expansion and turned into a string which then will be escaped in the template.
[tox]
envlist = py{26,27}-{pytest,nose}

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