Files @ 172b00cb02e6
Branch filter:

Location: kallithea/tox.ini

Mads Kiilerich
ini: drop production.ini - everybody should create their own with unique and random keys

test.ini and development.ini are more relevant ... but could perhaps be
generated from templates on demand.
[tox]
envlist = py{26,27}-{pytest,nose}

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