view tox.ini @ 5175:18b0e4d1ae58

helpers: make desc_stylize work when given html escaped strings The function returns strings with html markup. The result can thus not be escaped and we must assume that the input already has been escaped. That may or may not the case yet.
author Mads Kiilerich <madski@unity3d.com>
date Tue, 09 Jun 2015 22:50:20 +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}