Files @ d36fd56e4b91
Branch filter:

Location: rattail-project/rattail/tox.ini

lance
Allow datasync to export to rattail but *not* record changes

sometimes the "record changes" feature is desirable in all but 1 case, which is
real-time datasync, when such changes are "one way only" and have no need to
boomerang back to the originating system, and trying to do so can result in
misc. race conditions which are better avoided

[tox]
envlist = py27, py35

[testenv]
commands =
        pip install --upgrade pip
        pip install --upgrade --upgrade-strategy eager rattail[auth,bouncer,db,tests]
        nosetests {posargs}

[testenv:coverage]
basepython = python3
deps = invoke
commands =
        pip install --upgrade pip
        pip install --upgrade --upgrade-strategy eager rattail[auth,bouncer,db,tests] appy luigi xlrd
        nosetests {posargs:--with-coverage --cover-html-dir={envtmpdir}/coverage}

[testenv:docs]
basepython = python3
deps =
    Sphinx
changedir = docs
commands =
        pip install --upgrade pip
        pip install --upgrade --upgrade-strategy eager rattail[auth,bouncer,db,tests]
        sphinx-build -b html -d {envtmpdir}/doctrees -W -T . {envtmpdir}/docs