Files @ 5349281d4c9d
Branch filter:

Location: kallithea/tox.ini

Thomas De Schampheleire
tests: gists: comment out always-skipped test of put functionality

There is little sense in always skipping a test because the tested
functionality is not implemented. Instead, comment out the test and leave
it to the future implementer to re-enable it.
[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}