Files @ f5b5749113aa
Branch filter:

Location: kallithea/tox.ini - annotation

Thomas De Schampheleire
make-release: use a fresh virtualenv for building the release

A user-provided virtualenv could contain extra packages or different
versions, which may mask problems inside Kallithea.
[tox]
minversion = 1.8
envlist = py{26,27}-{pytest,nose}

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