view tox.ini @ 5999:58809814b51d

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 ...
author domruf <dominikruf@gmail.com>
date Tue, 14 Jun 2016 21:23:51 +0200
parents b2195895bbd7
children dd676fdeda0f
line wrap: on
line source

[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}