Files @ 3e580c666cd1
Branch filter:

Location: rattail-project/rattail/tox.ini

Lance Edgar
Remove `make-config` command, and edbob dependency!

The `make-config` command still seems like a good idea, but hadn't been
implemented properly, and was just an eyesore at this point...

[tox]
envlist = py26, py27

[testenv]
deps =
        alembic
        coverage
        Fabric
        fixture
        mock
        nose
        py-bcrypt
commands =
        pip install --upgrade rattail[bouncer]
        nosetests {posargs}

[testenv:coverage]
basepython = python
commands =
        pip install --upgrade rattail[bouncer]
        nosetests {posargs:--with-coverage --cover-html-dir={envtmpdir}/coverage}

[testenv:docs]
basepython = python
deps =
        alembic
        coverage
        Fabric
        fixture
        mock
        nose
        py-bcrypt
        Sphinx
changedir = docs
commands =
        pip install --upgrade rattail[bouncer]
        sphinx-build -b html -d {envtmpdir}/doctrees -W -T . {envtmpdir}/docs