view tox.ini @ 7425:c6207df9841f

controllers: forward pullrequests.delete_comment to changeset Remove duplication between pullrequests and changeset. We move the code outside ChangesetController to make it callable from PullrequestsController. Note: - instead of keeping the method pullrequests.delete_comment itself and letting it forward to changeset.delete_comment, an alternative solution would have been to change the routing table directly. However, the chosen solution makes it more explicit which operations are supported on each controller.
author Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
date Thu, 08 Nov 2018 21:38:37 +0100
parents dd676fdeda0f
children ab30729c735c
line wrap: on
line source

[tox]
minversion = 1.8
envlist = py{26,27}-pytest

[testenv]
setenv =
    PYTHONHASHSEED = 0
deps =
    -r{toxinidir}/dev_requirements.txt
    py26-pytest: unittest2
    python-ldap
    python-pam
commands =
    pytest: py.test {posargs}