Files @ e6fafb5ed70d
Branch filter:

Location: kallithea/tox.ini

Mads Kiilerich
docs: make the default method for running tests more visible

Sometimes, users found the convoluted and risky method of testing without
recreating the database before spotting the simple method.
[tox]
minversion = 1.8
envlist = py{26,27}-pytest

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