summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElod Illes <elod.illes@est.tech>2019-06-26 16:03:39 +0200
committerElod Illes <elod.illes@est.tech>2019-07-03 14:07:13 +0200
commit8c19b18e7014e54b78f714b0e873048de3ff619b (patch)
tree5518d3f9c222623e6e245d619f35229e43e23693
parent5fd54f37f4067a4e513e5981cd2b8b48f1d5c5da (diff)
downloadoslo-db-8c19b18e7014e54b78f714b0e873048de3ff619b.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: I6b237ecf55ff440b5f5c956ee849a1927bb15441 (cherry picked from commit f34e53ebf7670f51f16d5d96412a42fa7f3a8232) (cherry picked from commit 67904312ab7fff2939f5115125994fc3753be334) (cherry picked from commit d37a0eb3d5b20234592a6a514f5a4d7c75b5c763) (cherry picked from commit 4ae0a7732ea9317d17ac2f0066000c68e46f17b4) (cherry picked from commit 688141ae159d31632d87e28947f75fcef0598d4a)
-rw-r--r--bindep.txt8
-rw-r--r--tox.ini12
2 files changed, 20 insertions, 0 deletions
diff --git a/bindep.txt b/bindep.txt
new file mode 100644
index 0000000..cba81a4
--- /dev/null
+++ b/bindep.txt
@@ -0,0 +1,8 @@
+# This is a cross-platform list tracking distribution packages needed for install and tests;
+# see https://docs.openstack.org/infra/bindep/ for additional information.
+
+mysql-client [platform:dpkg]
+mysql-server [platform:dpkg]
+postgresql
+postgresql-client [platform:dpkg]
+
diff --git a/tox.ini b/tox.ini
index 2fb39a9..48127ac 100644
--- a/tox.ini
+++ b/tox.ini
@@ -75,3 +75,15 @@ import_exceptions =
# of the requirements.txt files
deps = pip_missing_reqs
commands = pip-missing-reqs -d --ignore-module=oslo_db* --ignore-module=pkg_resources --ignore-file=oslo_db/tests/* oslo_db
+
+[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