view tox.ini @ 5047:99f090563f5f

changeset status: fix common case where a reviewer did not yet review anything When a reviewer did not yet make any review, its status for the changeset is None, causing the code to crash. The unit tests also did not cover this case.
author Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
date Mon, 20 Apr 2015 17:02:42 +0200
parents 9c5e6984bd0e
children 5c8c77b7ca56
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}