Files @ 58809814b51d
Branch filter:

Location: kallithea/tox.ini

domruf
hooks: set Windows stderr output mode to binary

This prevents Python (or the Windows console) from replacing \n with \r\n. The
extra \r made exception output show up with empty lines.

Assuming we only get text and never binary data on stderr, an alternative
solution could be to strip trailing whitespace ...
[tox]
minversion = 1.8
envlist = py{26,27}-pytest

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