Files @ 4b9370a01c4d
Branch filter:

Location: kallithea/tox.ini - annotation

Søren Løvborg
compare: fix 404 ("undefined" ref type) error

The changeset selector would create selector entries without the
'type' attribute when running in "cached" mode, causing 404 errors.
[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}