Files @ d23d70cce785
Branch filter:

Location: kallithea/tox.ini

Mads Kiilerich
helpers: cleanup of journal action_parser

rev will always have op and ref_name attributes if it is a BaseChangeset or
AttributeDict.

lazy_cs was undefined for the (apparently rarely hit changeset-not-found case)
- fix that by setting the default to False.

Title is not relevant when using lazy-cs so there is no need for this h.tooltip
invocation.
[tox]
envlist = py{26,27}-{pytest,nose}

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