summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2019-07-08 05:04:04 +0000
committerGerrit Code Review <review@openstack.org>2019-07-08 05:04:04 +0000
commitef6aa7f04be2719612668dca38d9751a41cb312b (patch)
treee687efa1fd3f8209343f0e800c96f7ed074d80cf
parent9a367fd358b218ec226586adb4d51c2055242d95 (diff)
parent8c19b18e7014e54b78f714b0e873048de3ff619b (diff)
downloadoslo-db-stable/ocata.tar.gz
Merge "Add local bindep.txt" into stable/ocataocata-eolstable/ocata
-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