Files @ f359ebe73041
Branch filter:

Location: kallithea/tox.ini - annotation

Mads Kiilerich
tests: fix some incorrect test use of create_repo to create forks

This would create problems later when we start checking clone_uri.
[tox]
minversion = 1.8
envlist = py{26,27}-{pytest,nose}

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