Files @ 5c8c77b7ca56
Branch filter:

Location: kallithea/tox.ini

Ronny Pfannschmidt
tests: add pytest section and put tox and tests/scripts to norecursedirs

kallithea/tests/scripts are non-integrated messy tests
that cant be part of a testsuite as is
[pytest]
norecursedirs = kallithea/tests/scripts .tox


[tox]
envlist = py{26,27}-{pytest,nose}

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