summaryrefslogtreecommitdiff
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-07-01 14:43:48 +0200
commit4e98273c29ac48f6cdb4956955ef2b23154caa9a (patch)
tree26bca2fd44de2668d0cf4f5c42859e36c3fd7710
parent7831d564e48f06b932fecaaea1ccdf8d9dfd123a (diff)
downloadtaskflow-stable/pike.tar.gz
Add local bindep.txtpike-eolstable/pike
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. Conflicts: tox.ini [1] http://lists.openstack.org/pipermail/openstack-discuss/2019-June/007272.html Change-Id: I08797a99c7ba019a4b2dd640a83f45fea8e589bd (cherry picked from commit a081180238feac761c655ece2de3b0e9b68075fa) (cherry picked from commit f460c5ac29228d373fbb623dbb57e7e030b1dcd6) (cherry picked from commit 2bb79ca9920f8409d7a04c1e2e110493fe7a62e1) (cherry picked from commit 4ecc391ad3d41833e0a0c13e8010e0486546fffc)
-rw-r--r--bindep.txt12
-rw-r--r--tox.ini12
2 files changed, 24 insertions, 0 deletions
diff --git a/bindep.txt b/bindep.txt
new file mode 100644
index 0000000..b05daf9
--- /dev/null
+++ b/bindep.txt
@@ -0,0 +1,12 @@
+# This is a cross-platform list tracking distribution packages needed for install and tests;
+# see https://docs.openstack.org/infra/bindep/ for additional information.
+
+graphviz [!platform:gentoo]
+media-gfx/graphviz [platform:gentoo]
+
+libpq-dev [platform:dpkg]
+mysql-client [platform:dpkg]
+mysql-server [platform:dpkg]
+postgresql
+postgresql-client [platform:dpkg]
+
diff --git a/tox.ini b/tox.ini
index 4764c9e..a487a01 100644
--- a/tox.ini
+++ b/tox.ini
@@ -65,3 +65,15 @@ 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: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