summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2018-03-22 18:54:52 -0400
committerDoug Hellmann <doug@doughellmann.com>2018-03-24 21:03:13 -0400
commit550375d47656c7115219e880a8baa15e4100495e (patch)
tree3bf7a1cae796f0a91fdbcd7ee1b1a2f99e937c5f /tox.ini
parentd65c8d856c926695e6b1c84ba0eb1925df3c56e6 (diff)
downloadtaskflow-550375d47656c7115219e880a8baa15e4100495e.tar.gz
add lower-constraints job
Create a tox environment for running the unit tests against the lower bounds of the dependencies. Create a lower-constraints.txt to be used to enforce the lower bounds in those tests. Add openstack-tox-lower-constraints job to the zuul configuration. See http://lists.openstack.org/pipermail/openstack-dev/2018-March/128352.html for more details. Change-Id: I1a0941d79d112b6f4fde22885df985e7caaeb2c3 Depends-On: https://review.openstack.org/555034 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini7
1 files changed, 7 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 8622c3a..d4c420a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -74,3 +74,10 @@ commands =
[testenv:releasenotes]
deps = -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
+
+[testenv:lower-constraints]
+basepython = python3
+install_command = pip install {opts} {packages}
+deps =
+ -c{toxinidir}/lower-constraints.txt
+ .[test,workers,zookeeper,database,redis,eventlet]