Add sqlalchemy version cap for tox coverage, docs
this is of course just kicking the can down the road a bit for now...really need to get the latest zope.sqlalchemy instead...
This commit is contained in:
parent
2d8d4659b3
commit
3250347df1
9
tox.ini
9
tox.ini
|
@ -24,6 +24,13 @@ deps =
|
||||||
|
|
||||||
[testenv:coverage]
|
[testenv:coverage]
|
||||||
basepython = python3
|
basepython = python3
|
||||||
|
# TODO: capping sqlalchemy for now, to avoid issues w/ zope.sqlalchemy
|
||||||
|
deps =
|
||||||
|
coverage
|
||||||
|
fixture
|
||||||
|
mock
|
||||||
|
nose
|
||||||
|
SQLAlchemy<1.4
|
||||||
commands =
|
commands =
|
||||||
pip install --upgrade pip
|
pip install --upgrade pip
|
||||||
pip install --upgrade --upgrade-strategy eager Tailbone rattail[auth,bouncer] rattail-tempmon
|
pip install --upgrade --upgrade-strategy eager Tailbone rattail[auth,bouncer] rattail-tempmon
|
||||||
|
@ -31,9 +38,11 @@ commands =
|
||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
basepython = python3
|
basepython = python3
|
||||||
|
# TODO: capping sqlalchemy for now, to avoid issues w/ zope.sqlalchemy
|
||||||
deps =
|
deps =
|
||||||
Sphinx
|
Sphinx
|
||||||
sphinx-rtd-theme
|
sphinx-rtd-theme
|
||||||
|
SQLAlchemy<1.4
|
||||||
changedir = docs
|
changedir = docs
|
||||||
commands =
|
commands =
|
||||||
pip install --upgrade pip
|
pip install --upgrade pip
|
||||||
|
|
Loading…
Reference in a new issue