Files @ e553602fd5be
Branch filter:

Location: kallithea/tox.ini

Søren Løvborg
templates: use short_ref instead of manually checking ref type

There's a function that does this already.
[tox]
minversion = 1.8
envlist = py{26,27}-{pytest,nose}

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