view tox.ini @ 5805:be1d20bfd2dd

pytest migration: model: convert all tests to TestControllerPytest The model tests were based on BaseTestCase which does not exist currently for pytest-style tests. Nevertheless, there seems to be no advantage of directly subclassing BaseTestCase over subclassing TestControllerPytest. Thus, keep things simple and use TestControllerPytest.
author Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
date Tue, 26 Apr 2016 20:00:39 +0200
parents 6a83b399bb3c
children b2195895bbd7
line wrap: on
line source

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

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