Files @ 87c70c437565
Branch filter:

Location: rattail-project/rattail/tox.ini

lance
Accept config section name within `db.util.get_engines()`.

This is to set the stage for leveraging this function to establish database
connections to other systems, e.g. for `rattail_locsms`.
# -*- coding: utf-8 -*-

[tox]
envlist = py26, py27

[testenv]
deps =
        coverage
        fixture
        mock
        nose
commands = nosetests {posargs}

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

[testenv:docs]
basepython = python
deps = Sphinx
changedir = docs
commands = sphinx-build -b html -d {envtmpdir}/doctrees -W -T . {envtmpdir}/docs