Files @ 7edd336f88d7
Branch filter:

Location: kallithea/tox.ini

domruf
hooks: don't catch ImportError Exceptions in git hooks

These hooks are important. Being friendly and hiding errors is not the good
kind of friendliness. It is better if they just fail if the Kallithea
module can't be imported.
[tox]
minversion = 1.8
envlist = py{26,27}-pytest

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