summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2019-07-08 05:04:05 +0000
committerGerrit Code Review <review@openstack.org>2019-07-08 05:04:05 +0000
commit5ad37aabab256f3f91de2df0f91e8ef33f273487 (patch)
tree8c32d7a8d0ca37c99c466d109ec1fe9e9544c6a4
parent30787bb61706f353b312917d87a784cdf1d0ee75 (diff)
parent688141ae159d31632d87e28947f75fcef0598d4a (diff)
downloadoslo-db-stable/pike.tar.gz
Merge "Add local bindep.txt" into stable/pikepike-eolstable/pike
-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 8e1dc24..599c475 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