Files
@ 9c782efa065b
Branch filter:
Location: rattail-project/rattail/tox.ini - annotation
9c782efa065b
1012 B
text/x-ini
Remove some config for nosetests
buildbot is using only pytest now, but will leave nose in the test
dependencies until other packages are updated, e.g. tailbone
buildbot is using only pytest now, but will leave nose in the test
dependencies until other packages are updated, e.g. tailbone
21f6baf8652a 21f6baf8652a 70309886a578 21f6baf8652a 21f6baf8652a 7b63d9526bf1 3224f2d60712 2a730e9e6879 3224f2d60712 2a730e9e6879 21f6baf8652a b7d494fade48 b7d494fade48 b7d494fade48 aaaca04053b0 b7d494fade48 aaaca04053b0 b7d494fade48 21f6baf8652a 4b039570fe27 c1ef500d14bb 66094ca6dd81 3224f2d60712 6656eed55623 71e9aa401ca8 21f6baf8652a 21f6baf8652a 4b039570fe27 21f6baf8652a 66094ca6dd81 3224f2d60712 fd043c4c2fbd 66094ca6dd81 |
[tox]
envlist = py27, py35, py37
[testenv]
commands =
pip install --upgrade pip
pip install --upgrade setuptools wheel
pip install --upgrade --upgrade-strategy eager rattail[auth,bouncer,db,tests]
pytest {posargs}
[testenv:py27]
commands =
pip install --upgrade pip
pip install --upgrade setuptools wheel
pip install --upgrade --upgrade-strategy eager 'rattail[auth,bouncer,db,tests]' 'sqlalchemy-utils<0.36.7'
pytest {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
pytest --cov=rattail --cov-report=html
[testenv:docs]
basepython = python3
changedir = docs
commands =
pip install --upgrade pip
pip install --upgrade --upgrade-strategy eager rattail[auth,bouncer,db,tests,docs]
sphinx-build -b html -d {envtmpdir}/doctrees -W -T . {envtmpdir}/docs
|