Files @ 768989c595aa
Branch filter:

Location: kallithea/tox.ini

Mads Kiilerich
tox.ini: declare 1.8 as minimum tox version

Older tox versions will fail with
tox.ConfigError: ConfigError: substitution key '26,27' not found

Older tox versions will apparently not understand minversion anyway, but
at least it states the intent ...
[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}