Files @ b103f41a4954
Branch filter:

Location: kallithea/tox.ini

Thomas De Schampheleire
setup.py: enable pytest-sugar plugin

pytest-sugar enables a nice visual representation of test progress and
results.
Minimum version is set to 0.7.0 as it fixes a problem where skipped tests
would not be shown in the test summary.
The upper version 1.0.0 is arbitrarily chosen and could be increased as seen
fit.
[tox]
minversion = 1.8
envlist = py{26,27}-pytest

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