view tox.ini @ 5192:4c965154a28d

BaseController: refactor, extract _determine_auth_user function No changes - just a trivial step towards more interesting refactorings. Make it a static function so it in principle easily can be unit tested and is easier to review. Based on work by Søren Løvborg.
author Mads Kiilerich <madski@unity3d.com>
date Fri, 19 Jun 2015 00:54:07 +0200
parents 8c1258f69892
children 768989c595aa
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}