summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorElod Illes <elod.illes@est.tech>2019-06-26 16:49:19 +0200
committerElod Illes <elod.illes@est.tech>2019-06-26 17:25:54 +0200
commita081180238feac761c655ece2de3b0e9b68075fa (patch)
tree5f70ef9c22f46c1e06467f9468c42df8c4beff0d /tox.ini
parent7b1a65707ebcac8b279f1b2daece75c7183035b2 (diff)
downloadtaskflow-a081180238feac761c655ece2de3b0e9b68075fa.tar.gz
Add local bindep.txt
As it was announced [1] global bindep-fallback.txt was removed and now projects need to have a local bindep.txt to be able to install binary dependencies for testing. In test jobs the script tools/test-setup.sh is called which requires mysql and postgres servers and clients to be installed. [1] http://lists.openstack.org/pipermail/openstack-discuss/2019-June/007272.html Change-Id: I08797a99c7ba019a4b2dd640a83f45fea8e589bd
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini12
1 files changed, 12 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 8e6a246..66ea6e1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -90,6 +90,18 @@ basepython = python3
deps = -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
+[testenv:bindep]
+basepython = python3
+# Do not install any requirements. We want this to be fast and work even if
+# system dependencies are missing, since it's used to tell you what system
+# dependencies are missing! This also means that bindep must be installed
+# separately, outside of the requirements files, and develop mode disabled
+# explicitly to avoid unnecessarily installing the checked-out repo too (this
+# further relies on "tox.skipsdist = True" above).
+deps = bindep
+commands = bindep test
+usedevelop = False
+
[testenv:lower-constraints]
basepython = python3
install_command = pip install {opts} {packages}